diff options
Diffstat (limited to 'lisp/international/mule.el')
-rw-r--r-- | lisp/international/mule.el | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/lisp/international/mule.el b/lisp/international/mule.el index 86f3d2a34bf..df71205d515 100644 --- a/lisp/international/mule.el +++ b/lisp/international/mule.el @@ -30,12 +30,13 @@ ;;; Code: -;; FIXME? Are these still relevant? Nothing uses them AFAICS. (defconst mule-version "6.0 (HANACHIRUSATO)" "\ Version number and name of this version of MULE (multilingual environment).") +(make-obsolete-variable 'mule-version nil "28.1") (defconst mule-version-date "2003.9.1" "\ Distribution date of this version of MULE (multilingual environment).") +(make-obsolete-variable 'mule-version-date nil "28.1") ;;; CHARSET @@ -768,11 +769,12 @@ decoded by the coding system itself and before any functions in `after-insert-functions' are called. This function is passed one argument: the number of characters in the text to convert, with point at the start of the text. The function should leave point -unchanged, and should return the new character count. Note that -this function should avoid reading from files or receiving text -from subprocesses -- anything that could invoke decoding; if it -must do so, it should bind `coding-system-for-read' to a value -other than the current coding-system, to avoid infinite recursion. +and the match data unchanged, and should return the new character +count. Note that this function should avoid reading from files +or receiving text from subprocesses -- anything that could invoke +decoding; if it must do so, it should bind +`coding-system-for-read' to a value other than the current +coding-system, to avoid infinite recursion. `:pre-write-conversion' @@ -780,13 +782,13 @@ VALUE must be a function to call after all functions in `write-region-annotate-functions' and `buffer-file-format' are called, and before the text is encoded by the coding system itself. This function should convert the whole text in the -current buffer. For backward compatibility, this function is -passed two arguments which can be ignored. Note that this -function should avoid writing to files or sending text to -subprocesses -- anything that could invoke encoding; if it -must do so, it should bind `coding-system-for-write' to a -value other than the current coding-system, to avoid infinite -recursion. +current buffer, and leave the match data unchanged. For backward +compatibility, this function is passed two arguments which can be +ignored. Note that this function should avoid writing to files +or sending text to subprocesses -- anything that could invoke +encoding; if it must do so, it should bind +`coding-system-for-write' to a value other than the current +coding-system, to avoid infinite recursion. `:default-char' |