summaryrefslogtreecommitdiff
path: root/lisp/time-stamp.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2006-11-27 14:11:40 +0000
committerJuanma Barranquero <lekktu@gmail.com>2006-11-27 14:11:40 +0000
commitfe15c2c6b69212c88caafa2509a15fad88ebedd2 (patch)
tree6fbff38d12213c5c7de767d7311600ede17c59a1 /lisp/time-stamp.el
parent37437fb503e8a50d2b74a5a0714f7227f007b72a (diff)
downloademacs-fe15c2c6b69212c88caafa2509a15fad88ebedd2.tar.gz
(time-stamp-string-preprocess): "?\ " -> "?\s".
Diffstat (limited to 'lisp/time-stamp.el')
-rw-r--r--lisp/time-stamp.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/time-stamp.el b/lisp/time-stamp.el
index c66736a3594..daa713e069b 100644
--- a/lisp/time-stamp.el
+++ b/lisp/time-stamp.el
@@ -491,7 +491,7 @@ and all `time-stamp-format' compatibility."
(or (eq ?. cur-char)
(eq ?, cur-char) (eq ?: cur-char) (eq ?@ cur-char)
(eq ?- cur-char) (eq ?+ cur-char) (eq ?_ cur-char)
- (eq ?\ cur-char) (eq ?# cur-char) (eq ?^ cur-char)
+ (eq ?\s cur-char) (eq ?# cur-char) (eq ?^ cur-char)
(and (eq ?\( cur-char)
(not (eq prev-char ?\\))
(setq paren-level (1+ paren-level)))