org-clock: Disambiguate character syntax
* lisp/org-clock.el (org-clock-put-overlay): Escape character in character syntax.
This commit is contained in:
parent
134500e7c1
commit
93e5d92383
|
@ -1961,7 +1961,8 @@ will be easy to remove."
|
|||
(make-string
|
||||
(max 0 (- (- 60 (current-column))
|
||||
(- (match-end 4) (match-beginning 4))
|
||||
(length (org-get-at-bol 'line-prefix)))) ?·)
|
||||
(length (org-get-at-bol 'line-prefix))))
|
||||
?\·)
|
||||
'(face shadow))
|
||||
(org-add-props
|
||||
(format " %9s " (org-minutes-to-clocksum-string time))
|
||||
|
|
Loading…
Reference in New Issue