diff options
| -rw-r--r-- | lisp/international/codepage.el | 7 |
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 |
| 134 | TABLE into an ISO-8859 character set CHARSET whose first non-ASCII | 134 | TABLE into an ISO-8859 character set CHARSET whose first non-ASCII |
| 135 | character' is generated by (make-char CHARSET OFFSET)." | 135 | character 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. |
| 517 | cpCODEPAGE-unix. | ||
| 518 | 517 | ||
| 519 | These coding systems are meant for encoding and decoding 8-bit non-ASCII | 518 | These coding systems are meant for encoding and decoding 8-bit non-ASCII |
| 520 | characters used by the IBM codepages, typically in conjunction with files | 519 | characters used by the IBM codepages, typically in conjunction with files |
| 521 | read/written by MS-DOS software, or for display on MS-DOS terminal." | 520 | read/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))) |