aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 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