mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-23 21:37:34 +00:00
* lisp/woman.el (woman-translate): Case matters. (Bug#6849)
This commit is contained in:
parent
b72e07172e
commit
bb25c8d7a1
2 changed files with 8 additions and 1 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2010-08-18 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* woman.el (woman-translate): Case matters. (Bug#6849)
|
||||
|
||||
2010-08-14 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* simple.el (kill-region): Doc fix (Bug#6787).
|
||||
|
|
|
|||
|
|
@ -3384,7 +3384,10 @@ Format paragraphs upto TO. Supports special chars.
|
|||
"Translate up to marker TO. Do this last of all transformations."
|
||||
(if translations
|
||||
(let ((matches (car translations))
|
||||
(alist (cdr translations)))
|
||||
(alist (cdr translations))
|
||||
;; Translations are case-sensitive, eg ".tr ab" does not
|
||||
;; affect "A" (bug#6849).
|
||||
(case-fold-search nil))
|
||||
(while (re-search-forward matches to t)
|
||||
;; Done like this to retain text properties and
|
||||
;; support translation of special characters:
|
||||
|
|
|
|||
Loading…
Reference in a new issue