diff options
Diffstat (limited to 'lisp/org/org-colview.el')
-rw-r--r-- | lisp/org/org-colview.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org/org-colview.el b/lisp/org/org-colview.el index e6464ab8a14..cb5c091d0a3 100644 --- a/lisp/org/org-colview.el +++ b/lisp/org/org-colview.el @@ -1379,8 +1379,8 @@ PARAMS is a property list of parameters: (let ((id (plist-get params :id)) view-file view-pos) (pcase id - ('global nil) - ((or 'local 'nil) (setq view-pos (point))) + (`global nil) + ((or `local `nil) (setq view-pos (point))) ((and (let id-string (format "%s" id)) (guard (string-match "^file:\\(.*\\)" id-string))) (setq view-file (match-string-no-properties 1 id-string)) |