aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love <[email protected]>2001-12-15 16:43:11 +0000
committerDave Love <[email protected]>2001-12-15 16:43:11 +0000
commitbc9254e226ef73aeafbea7d4a3613f8c03cbfce6 (patch)
treebb12b6aa89fcb330efef9e1d52fd367c60ab4900
parent35fffde1df8d896c964b6d3b42fff70f4dd1c49b (diff)
Doc fixes.
-rw-r--r--lisp/international/mule-util.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/international/mule-util.el b/lisp/international/mule-util.el
index e0ad655cbd..e962c9be19 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
;;;###autoload
(defun coding-system-post-read-conversion (coding-system)
- "Return the value of CODING-SYSTEM's post-read-conversion property."
+ "Return the value of CODING-SYSTEM's `post-read-conversion' property."
(coding-system-get coding-system 'post-read-conversion))
;;;###autoload
(defun coding-system-pre-write-conversion (coding-system)
- "Return the value of CODING-SYSTEM's pre-write-conversion property."
+ "Return the value of CODING-SYSTEM's `pre-write-conversion' property."
(coding-system-get coding-system 'pre-write-conversion))
;;;###autoload
(defun coding-system-translation-table-for-decode (coding-system)
- "Return the value of CODING-SYSTEM's translation-table-for-decode property."
+ "Return the value of CODING-SYSTEM's `translation-table-for-decode' property."
(coding-system-get coding-system 'translation-table-for-decode))
;;;###autoload
(defun coding-system-translation-table-for-encode (coding-system)
- "Return the value of CODING-SYSTEM's translation-table-for-encode property."
+ "Return the value of CODING-SYSTEM's `translation-table-for-encode' property."
(coding-system-get coding-system 'translation-table-for-encode))
;;;###autoload