diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-08-21 16:43:27 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-08-21 16:43:27 +0100 |
commit | 3bbfab5e4f75d2ea1ff5e85cb11405267593910f (patch) | |
tree | 53582d8258e94a108e53c401b53ed3565a87192a /Emacs/.config/emacs/elisp | |
parent | d1bb76f314232f30faeb863a83af9f21e63fe75d (diff) | |
download | dotfiles-3bbfab5e4f75d2ea1ff5e85cb11405267593910f.tar.gz dotfiles-3bbfab5e4f75d2ea1ff5e85cb11405267593910f.tar.bz2 dotfiles-3bbfab5e4f75d2ea1ff5e85cb11405267593910f.zip |
(Emacs/elisp/org-bookmark)~indenting
Diffstat (limited to 'Emacs/.config/emacs/elisp')
-rw-r--r-- | Emacs/.config/emacs/elisp/org-bookmark.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Emacs/.config/emacs/elisp/org-bookmark.el b/Emacs/.config/emacs/elisp/org-bookmark.el index 9d26c94..795e969 100644 --- a/Emacs/.config/emacs/elisp/org-bookmark.el +++ b/Emacs/.config/emacs/elisp/org-bookmark.el @@ -86,8 +86,8 @@ are cached for faster lookup." (with-current-buffer (find-file-noselect org-bookmark/file) (let ((cur-last-modified (float-time (visited-file-modtime)))) (when (or (null org-bookmark/--cache) ; no cache - (null org-bookmark/--cache-last-modified) ; no last modified - (not (= cur-last-modified org-bookmark/--cache-last-modified))) ; file has been modified + (null org-bookmark/--cache-last-modified) ; no last modified + (not (= cur-last-modified org-bookmark/--cache-last-modified))) ; file has been modified (setq org-bookmark/--cache-last-modified cur-last-modified org-bookmark/--cache (mapcar #'org-bookmark/--format-heading-data @@ -125,9 +125,9 @@ opening the url to some handler function." (cl-loop for (patterns . func) in org-bookmark/dispatch-list if (or (eq patterns 'otherwise) - (cl-some - #'(lambda (pattern) (string-match pattern url)) - patterns)) + (cl-some + #'(lambda (pattern) (string-match pattern url)) + patterns)) return func))) (message "dispatch-choice=%S" dispatch-choice) (funcall dispatch-choice (cdr pair)))))) |