1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-01 11:14:55 +00:00

(decipher-loop-with-breaks): Change space constants "protected" from end of line

by a comment to "?\s".
This commit is contained in:
Juanma Barranquero 2005-06-29 13:55:15 +00:00
parent a64dc04f64
commit e0b3c2b98d

View File

@ -772,7 +772,7 @@ See `decipher-loop-no-breaks' if you do not care about word divisions."
(forward-char))
(or (equal decipher-char ?\ )
(progn
(setq decipher-char ?\ ;
(setq decipher-char ?\s
decipher--loop-prev-char ?\ )
(funcall func)))))))