From: Juanma Barranquero Date: Mon, 27 Nov 2006 14:11:40 +0000 (+0000) Subject: (time-stamp-string-preprocess): "?\ " -> "?\s". X-Git-Tag: emacs-pretest-22.0.92~457 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fe15c2c6b69212c88caafa2509a15fad88ebedd2;p=emacs.git (time-stamp-string-preprocess): "?\ " -> "?\s". --- 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)))