aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2006-11-27 14:11:40 +0000
committerJuanma Barranquero2006-11-27 14:11:40 +0000
commitfe15c2c6b69212c88caafa2509a15fad88ebedd2 (patch)
tree6fbff38d12213c5c7de767d7311600ede17c59a1
parent37437fb503e8a50d2b74a5a0714f7227f007b72a (diff)
downloademacs-fe15c2c6b69212c88caafa2509a15fad88ebedd2.tar.gz
emacs-fe15c2c6b69212c88caafa2509a15fad88ebedd2.zip
(time-stamp-string-preprocess): "?\ " -> "?\s".
-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."
491 (or (eq ?. cur-char) 491 (or (eq ?. cur-char)
492 (eq ?, cur-char) (eq ?: cur-char) (eq ?@ cur-char) 492 (eq ?, cur-char) (eq ?: cur-char) (eq ?@ cur-char)
493 (eq ?- cur-char) (eq ?+ cur-char) (eq ?_ cur-char) 493 (eq ?- cur-char) (eq ?+ cur-char) (eq ?_ cur-char)
494 (eq ?\ cur-char) (eq ?# cur-char) (eq ?^ cur-char) 494 (eq ?\s cur-char) (eq ?# cur-char) (eq ?^ cur-char)
495 (and (eq ?\( cur-char) 495 (and (eq ?\( cur-char)
496 (not (eq prev-char ?\\)) 496 (not (eq prev-char ?\\))
497 (setq paren-level (1+ paren-level))) 497 (setq paren-level (1+ paren-level)))