summaryrefslogtreecommitdiff
path: root/lisp/calendar
diff options
context:
space:
mode:
authorPhilipp Stephani <phst@google.com>2017-05-06 19:16:49 +0200
committerPhilipp <phst@google.com>2017-05-07 13:22:34 +0200
commit3c4c8ca06e3306ccbcd07e354eb51abe53b52d22 (patch)
tree01542b123bede1a9d6d9b05ec1dbf2089e9a76bd /lisp/calendar
parentbcbd8f7e4e929604bb3dfef9937432cb05b5f648 (diff)
downloademacs-3c4c8ca06e3306ccbcd07e354eb51abe53b52d22.tar.gz
Fix all unescaped character literals
Diffstat (limited to 'lisp/calendar')
-rw-r--r--lisp/calendar/timeclock.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/calendar/timeclock.el b/lisp/calendar/timeclock.el
index f8de084f776..a4709c3b4b5 100644
--- a/lisp/calendar/timeclock.el
+++ b/lisp/calendar/timeclock.el
@@ -656,9 +656,9 @@ that variable's documentation."
(setq timeclock-mode-string
(propertize
(format " %c%s%c "
- (if last-in ?< ?[)
+ (if last-in ?< ?\[)
(timeclock-seconds-to-string remainder nil t)
- (if last-in ?> ?]))
+ (if last-in ?> ?\]))
'help-echo "timeclock: time remaining"))))
(put 'timeclock-mode-string 'risky-local-variable t)