aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
authorKenichi Handa2009-03-27 07:25:44 +0000
committerKenichi Handa2009-03-27 07:25:44 +0000
commitb811c52b9116c7181e61e05e0a9299931e12b8a2 (patch)
tree5a8479b4f32ca199832cde9b26e6503277b409b9 /src/coding.c
parentc95a500868e8e6df777e479e8aa9f195f31bcde3 (diff)
downloademacs-b811c52b9116c7181e61e05e0a9299931e12b8a2.tar.gz
emacs-b811c52b9116c7181e61e05e0a9299931e12b8a2.zip
(Fdetect_coding_region, Fcoding_system_priority_list): Improve the
docstrings.
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/coding.c b/src/coding.c
index 8d5304dc114..5f72c69c859 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -8518,6 +8518,8 @@ DEFUN ("detect-coding-region", Fdetect_coding_region, Sdetect_coding_region,
8518 2, 3, 0, 8518 2, 3, 0,
8519 doc: /* Detect coding system of the text in the region between START and END. 8519 doc: /* Detect coding system of the text in the region between START and END.
8520Return a list of possible coding systems ordered by priority. 8520Return a list of possible coding systems ordered by priority.
8521The coding systems to try and their priorities follows what
8522the function `coding-system-priority-list' (which see) returns.
8521 8523
8522If only ASCII characters are found (except for such ISO-2022 control 8524If only ASCII characters are found (except for such ISO-2022 control
8523characters as ESC), it returns a list of single element `undecided' 8525characters as ESC), it returns a list of single element `undecided'
@@ -9552,6 +9554,9 @@ usage: (set-coding-system-priority &rest coding-systems) */)
9552DEFUN ("coding-system-priority-list", Fcoding_system_priority_list, 9554DEFUN ("coding-system-priority-list", Fcoding_system_priority_list,
9553 Scoding_system_priority_list, 0, 1, 0, 9555 Scoding_system_priority_list, 0, 1, 0,
9554 doc: /* Return a list of coding systems ordered by their priorities. 9556 doc: /* Return a list of coding systems ordered by their priorities.
9557The list contains a subset of coding systems; i.e. coding systems
9558assigned to each coding category (see `coding-category-list').
9559
9555HIGHESTP non-nil means just return the highest priority one. */) 9560HIGHESTP non-nil means just return the highest priority one. */)
9556 (highestp) 9561 (highestp)
9557 Lisp_Object highestp; 9562 Lisp_Object highestp;