diff options
| author | Dave Love | 2001-12-15 16:43:11 +0000 |
|---|---|---|
| committer | Dave Love | 2001-12-15 16:43:11 +0000 |
| commit | bc9254e226ef73aeafbea7d4a3613f8c03cbfce6 (patch) | |
| tree | bb12b6aa89fcb330efef9e1d52fd367c60ab4900 /lisp | |
| parent | 35fffde1df8d896c964b6d3b42fff70f4dd1c49b (diff) | |
| download | emacs-bc9254e226ef73aeafbea7d4a3613f8c03cbfce6.tar.gz emacs-bc9254e226ef73aeafbea7d4a3613f8c03cbfce6.zip | |
Doc fixes.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/international/mule-util.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/international/mule-util.el b/lisp/international/mule-util.el index e0ad655cbde..e962c9be19a 100644 --- a/lisp/international/mule-util.el +++ b/lisp/international/mule-util.el | |||
| @@ -234,22 +234,22 @@ Optional 3rd argument NIL-FOR-TOO-LONG non-nil means return nil | |||
| 234 | 234 | ||
| 235 | ;;;###autoload | 235 | ;;;###autoload |
| 236 | (defun coding-system-post-read-conversion (coding-system) | 236 | (defun coding-system-post-read-conversion (coding-system) |
| 237 | "Return the value of CODING-SYSTEM's post-read-conversion property." | 237 | "Return the value of CODING-SYSTEM's `post-read-conversion' property." |
| 238 | (coding-system-get coding-system 'post-read-conversion)) | 238 | (coding-system-get coding-system 'post-read-conversion)) |
| 239 | 239 | ||
| 240 | ;;;###autoload | 240 | ;;;###autoload |
| 241 | (defun coding-system-pre-write-conversion (coding-system) | 241 | (defun coding-system-pre-write-conversion (coding-system) |
| 242 | "Return the value of CODING-SYSTEM's pre-write-conversion property." | 242 | "Return the value of CODING-SYSTEM's `pre-write-conversion' property." |
| 243 | (coding-system-get coding-system 'pre-write-conversion)) | 243 | (coding-system-get coding-system 'pre-write-conversion)) |
| 244 | 244 | ||
| 245 | ;;;###autoload | 245 | ;;;###autoload |
| 246 | (defun coding-system-translation-table-for-decode (coding-system) | 246 | (defun coding-system-translation-table-for-decode (coding-system) |
| 247 | "Return the value of CODING-SYSTEM's translation-table-for-decode property." | 247 | "Return the value of CODING-SYSTEM's `translation-table-for-decode' property." |
| 248 | (coding-system-get coding-system 'translation-table-for-decode)) | 248 | (coding-system-get coding-system 'translation-table-for-decode)) |
| 249 | 249 | ||
| 250 | ;;;###autoload | 250 | ;;;###autoload |
| 251 | (defun coding-system-translation-table-for-encode (coding-system) | 251 | (defun coding-system-translation-table-for-encode (coding-system) |
| 252 | "Return the value of CODING-SYSTEM's translation-table-for-encode property." | 252 | "Return the value of CODING-SYSTEM's `translation-table-for-encode' property." |
| 253 | (coding-system-get coding-system 'translation-table-for-encode)) | 253 | (coding-system-get coding-system 'translation-table-for-encode)) |
| 254 | 254 | ||
| 255 | ;;;###autoload | 255 | ;;;###autoload |