aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/woman.el5
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a0cdf2f8a77..8d74713da93 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12010-08-18 Glenn Morris <rgm@gnu.org>
2
3 * woman.el (woman-translate): Case matters. (Bug#6849)
4
12010-08-14 Chong Yidong <cyd@stupidchicken.com> 52010-08-14 Chong Yidong <cyd@stupidchicken.com>
2 6
3 * simple.el (kill-region): Doc fix (Bug#6787). 7 * simple.el (kill-region): Doc fix (Bug#6787).
diff --git a/lisp/woman.el b/lisp/woman.el
index 79d6d84aff1..eb21f01e564 100644
--- a/lisp/woman.el
+++ b/lisp/woman.el
@@ -3384,7 +3384,10 @@ Format paragraphs upto TO. Supports special chars.
3384 "Translate up to marker TO. Do this last of all transformations." 3384 "Translate up to marker TO. Do this last of all transformations."
3385 (if translations 3385 (if translations
3386 (let ((matches (car translations)) 3386 (let ((matches (car translations))
3387 (alist (cdr translations))) 3387 (alist (cdr translations))
3388 ;; Translations are case-sensitive, eg ".tr ab" does not
3389 ;; affect "A" (bug#6849).
3390 (case-fold-search nil))
3388 (while (re-search-forward matches to t) 3391 (while (re-search-forward matches to t)
3389 ;; Done like this to retain text properties and 3392 ;; Done like this to retain text properties and
3390 ;; support translation of special characters: 3393 ;; support translation of special characters: