summaryrefslogtreecommitdiff
path: root/lisp/play
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2005-06-29 13:55:15 +0000
committerJuanma Barranquero <lekktu@gmail.com>2005-06-29 13:55:15 +0000
commite0b3c2b98d7ac5b6f1df481d52a085b16e5b81cb (patch)
tree50cce225a6d53186e66b00782b24628e771a4e71 /lisp/play
parenta64dc04f640b7c001abccbe4f2f090910ddaeb74 (diff)
downloademacs-e0b3c2b98d7ac5b6f1df481d52a085b16e5b81cb.tar.gz
(decipher-loop-with-breaks): Change space constants "protected" from end of line
by a comment to "?\s".
Diffstat (limited to 'lisp/play')
-rw-r--r--lisp/play/decipher.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/play/decipher.el b/lisp/play/decipher.el
index 9ef8d0fd01f..86e6a35b646 100644
--- a/lisp/play/decipher.el
+++ b/lisp/play/decipher.el
@@ -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)))))))