aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2008-10-23 08:05:36 +0000
committerKenichi Handa2008-10-23 08:05:36 +0000
commitfd0dd4c36627a366a764a5fc87bb8d480863e26b (patch)
tree018c22428ca1512a022b555db283d38e7628b67a
parentf54857320dc58681dd189f8ff4d01db15f715685 (diff)
downloademacs-fd0dd4c36627a366a764a5fc87bb8d480863e26b.tar.gz
emacs-fd0dd4c36627a366a764a5fc87bb8d480863e26b.zip
(describe-language-environment): Indent sample text.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/international/mule-cmds.el4
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 5e2440d7a6a..73be7036c54 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12008-10-23 Ulrich Mueller <ulm@kph.uni-mainz.de>
2
3 * international/mule-cmds.el (describe-language-environment):
4 Indent sample text.
5
12008-10-23 Glenn Morris <rgm@gnu.org> 62008-10-23 Glenn Morris <rgm@gnu.org>
2 7
3 * pcmpl-rpm.el (pcomplete/rpm): Doc fix. 8 * pcmpl-rpm.el (pcomplete/rpm): Doc fix.
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el
index 894f2f70216..31eea7abee3 100644
--- a/lisp/international/mule-cmds.el
+++ b/lisp/international/mule-cmds.el
@@ -2039,7 +2039,9 @@ Setting this variable directly does not take effect. See
2039 (condition-case nil 2039 (condition-case nil
2040 (let ((str (eval (get-language-info language-name 'sample-text)))) 2040 (let ((str (eval (get-language-info language-name 'sample-text))))
2041 (if (stringp str) 2041 (if (stringp str)
2042 (insert "Sample text:\n " str "\n\n"))) 2042 (insert "Sample text:\n "
2043 (replace-regexp-in-string "\n" "\n " str)
2044 "\n\n")))
2043 (error nil)) 2045 (error nil))
2044 (let ((input-method (get-language-info language-name 'input-method)) 2046 (let ((input-method (get-language-info language-name 'input-method))
2045 (l (copy-sequence input-method-alist)) 2047 (l (copy-sequence input-method-alist))