aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii1999-01-10 15:23:30 +0000
committerEli Zaretskii1999-01-10 15:23:30 +0000
commite714d2cfd430a5ca4a73f1da037343685c028400 (patch)
treeb5c172cbe18c917dd71dee05fce7daacbc905b4e
parenta9bc66c20b1f81a729304526a1bf0a53e1895531 (diff)
downloademacs-e714d2cfd430a5ca4a73f1da037343685c028400.tar.gz
emacs-e714d2cfd430a5ca4a73f1da037343685c028400.zip
(codepage-setup): Doc fix.
(cp-decoding-vector-for-codepage): Likewise.
-rw-r--r--lisp/international/codepage.el7
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/international/codepage.el b/lisp/international/codepage.el
index a804792385d..026aa6c2ea1 100644
--- a/lisp/international/codepage.el
+++ b/lisp/international/codepage.el
@@ -132,7 +132,7 @@ variety is actually just an alias for the -unix variety)."
132(defun cp-decoding-vector-for-codepage (table charset offset) 132(defun cp-decoding-vector-for-codepage (table charset offset)
133 "Create a vector for decoding IBM PC characters using conversion table 133 "Create a vector for decoding IBM PC characters using conversion table
134TABLE into an ISO-8859 character set CHARSET whose first non-ASCII 134TABLE into an ISO-8859 character set CHARSET whose first non-ASCII
135character' is generated by (make-char CHARSET OFFSET)." 135character is generated by (make-char CHARSET OFFSET)."
136 (let* ((len (length table)) 136 (let* ((len (length table))
137 (undefined-char 137 (undefined-char
138 (if (eq system-type 'ms-dos) 138 (if (eq system-type 'ms-dos)
@@ -513,12 +513,11 @@ is a vector, and has a charset property."
513 513
514;;;###autoload 514;;;###autoload
515(defun codepage-setup (codepage) 515(defun codepage-setup (codepage)
516 "Create 2 coding systems for codepage CODEPAGE: cpCODEPAGE-dos and 516 "Create a coding system cpCODEPAGE to support the IBM codepage CODEPAGE.
517cpCODEPAGE-unix.
518 517
519These coding systems are meant for encoding and decoding 8-bit non-ASCII 518These coding systems are meant for encoding and decoding 8-bit non-ASCII
520characters used by the IBM codepages, typically in conjunction with files 519characters used by the IBM codepages, typically in conjunction with files
521read/written by MS-DOS software, or for display on MS-DOS terminal." 520read/written by MS-DOS software, or for display on the MS-DOS terminal."
522 (interactive 521 (interactive
523 (let ((completion-ignore-case t) 522 (let ((completion-ignore-case t)
524 (candidates (cp-supported-codepages))) 523 (candidates (cp-supported-codepages)))