aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2003-01-24 13:28:00 +0000
committerKenichi Handa2003-01-24 13:28:00 +0000
commitdb046b7d3a05ace4d6d2431695018f7de231710c (patch)
treefd5e41ea888cf0383e10a2b74af765958c81ac71
parent7e450d02db192890dc64ba081664d15285822c5a (diff)
downloademacs-db046b7d3a05ace4d6d2431695018f7de231710c.tar.gz
emacs-db046b7d3a05ace4d6d2431695018f7de231710c.zip
(decode-coding-inserted-region): Renamed
from decode-coding-region-as-inserted-from-file to make it fit well in the Lisp manual.
-rw-r--r--lisp/international/mule.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/international/mule.el b/lisp/international/mule.el
index aa14f442bd0..c2c53f5b042 100644
--- a/lisp/international/mule.el
+++ b/lisp/international/mule.el
@@ -1899,9 +1899,8 @@ or a function symbol which, when called, returns such a cons cell."
1899 (cons (cons regexp coding-system) 1899 (cons (cons regexp coding-system)
1900 network-coding-system-alist))))))) 1900 network-coding-system-alist)))))))
1901 1901
1902(defun decode-coding-region-as-inserted-from-file (from to filename 1902(defun decode-coding-inserted-region (from to filename
1903 &optional 1903 &optional visit beg end replace)
1904 visit beg end replace)
1905 "Decode the region between FROM and TO as if it is read from file FILENAME. 1904 "Decode the region between FROM and TO as if it is read from file FILENAME.
1906Optional arguments VISIT, BEG, END, and REPLACE are the same as those 1905Optional arguments VISIT, BEG, END, and REPLACE are the same as those
1907of the function `insert-file-contents'." 1906of the function `insert-file-contents'."