diff options
| author | John Paul Wallington | 2008-05-14 11:46:24 +0000 |
|---|---|---|
| committer | John Paul Wallington | 2008-05-14 11:46:24 +0000 |
| commit | d660b68fad1e22014498c54e2151a06c51ac6c6b (patch) | |
| tree | 72ee7c7cdc5dddc70e3ee2706a53e757e62a0e99 | |
| parent | 1f09f444ca5da8047d0e586193cd0fb02bf584b7 (diff) | |
| download | emacs-d660b68fad1e22014498c54e2151a06c51ac6c6b.tar.gz emacs-d660b68fad1e22014498c54e2151a06c51ac6c6b.zip | |
(convert-define-charset-argument): Remove period from end of error message.
(coding-system-mnemonic): Doc fix.
(ctext-pre-write-conversion): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/international/mule.el | 6 |
2 files changed, 10 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 964fc9ab424..524dd2923f8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2008-05-14 John Paul Wallington <jpw@pobox.com> | ||
| 2 | |||
| 3 | * international/mule.el (convert-define-charset-argument): Remove | ||
| 4 | period from end of error message. | ||
| 5 | (coding-system-mnemonic): Doc fix. | ||
| 6 | (ctext-pre-write-conversion): Doc fix. | ||
| 7 | |||
| 1 | 2008-05-14 Simon Marshall <simon@gnu.org> | 8 | 2008-05-14 Simon Marshall <simon@gnu.org> |
| 2 | 9 | ||
| 3 | * obsolete/fast-lock.el (fast-lock-cache-directories): Remove "." | 10 | * obsolete/fast-lock.el (fast-lock-cache-directories): Remove "." |
diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 778b189a73d..9b24e2c618f 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el | |||
| @@ -82,7 +82,7 @@ Distribution date of this version of MULE (multilingual environment).") | |||
| 82 | (if (> (- private-char-area-2-max private-char-area-2-min) total) | 82 | (if (> (- private-char-area-2-max private-char-area-2-min) total) |
| 83 | (setq code-offset private-char-area-2-min | 83 | (setq code-offset private-char-area-2-min |
| 84 | private-char-area-2-min (+ private-char-area-2-min total)) | 84 | private-char-area-2-min (+ private-char-area-2-min total)) |
| 85 | (error "No more space for a new charset."))) | 85 | (error "No more space for a new charset"))) |
| 86 | (list :dimension dim | 86 | (list :dimension dim |
| 87 | :code-space code-space | 87 | :code-space code-space |
| 88 | :iso-final-char (aref info-vector 4) | 88 | :iso-final-char (aref info-vector 4) |
| @@ -834,7 +834,7 @@ encoding. This attribute has a meaning only when `:coding-type' is | |||
| 834 | (defun coding-system-mnemonic (coding-system) | 834 | (defun coding-system-mnemonic (coding-system) |
| 835 | "Return the mnemonic character of CODING-SYSTEM. | 835 | "Return the mnemonic character of CODING-SYSTEM. |
| 836 | The mnemonic character of a coding system is used in mode line to | 836 | The mnemonic character of a coding system is used in mode line to |
| 837 | indicate the coding system. If CODING-SYSTEM. is nil, return ?=." | 837 | indicate the coding system. If CODING-SYSTEM is nil, return ?=." |
| 838 | (plist-get (coding-system-plist coding-system) :mnemonic)) | 838 | (plist-get (coding-system-plist coding-system) :mnemonic)) |
| 839 | 839 | ||
| 840 | (defun coding-system-type (coding-system) | 840 | (defun coding-system-type (coding-system) |
| @@ -1492,7 +1492,7 @@ Each element must be one of the names listed in the variable | |||
| 1492 | "Encode characters between FROM and TO as Compound Text w/Extended Segments. | 1492 | "Encode characters between FROM and TO as Compound Text w/Extended Segments. |
| 1493 | 1493 | ||
| 1494 | If FROM is a string, or if the current buffer is not the one set up for us | 1494 | If FROM is a string, or if the current buffer is not the one set up for us |
| 1495 | by encode-coding-string, generate a new temp buffer, insert the | 1495 | by `encode-coding-string', generate a new temp buffer, insert the |
| 1496 | text, and convert it in the temporary buffer. Otherwise, convert in-place." | 1496 | text, and convert it in the temporary buffer. Otherwise, convert in-place." |
| 1497 | (save-match-data | 1497 | (save-match-data |
| 1498 | ;; Setup a working buffer if necessary. | 1498 | ;; Setup a working buffer if necessary. |