From: Ihor Radchenko <yantar92@posteo.net>
To: Eli Zaretskii <eliz@gnu.org>
Cc: dmitry@gutov.dev, 66117@debbugs.gnu.org
Subject: bug#66117: 30.0.50; `find-buffer-visiting' is slow when opening large number of buffers
Date: Tue, 26 Sep 2023 13:06:04 +0000 [thread overview]
Message-ID: <87pm2584oz.fsf@localhost> (raw)
In-Reply-To: <87bkdr2651.fsf@localhost>
[-- Attachment #1: Type: text/plain, Size: 4755 bytes --]
Ihor Radchenko <yantar92@posteo.net> writes:
> Most of the time was taken by `find-buffer-visiting'. Replacing
> `find-buffer-visiting' with `get-file-buffer' in certain (not all)
> places reduced the total runtime by 30%. I do not have more granular data
> because the profiler did not give very granular data for the internals
> of `find-buffer-visiting'.
>
> I will try to setup a test on my machine for more detailed data.
Here is a reproducer anyone can try locally:
1. Create a dummy set of 1000 files in /tmp/test/:
(dotimes (i 1000) (with-temp-file (format "/tmp/test/%d.org" i) (insert "* This is test")))
2. emacs -Q
3. Open all the 1000 files one by one:
(dolist (file (directory-files "/tmp/test/" t "org"))
(unless (find-buffer-visiting file) (find-file-noselect file)))
Step (3) takes 18.8 seconds on my machine. The CPU profile attached as
cpu-profile.
If one uses `get-file-buffer' instead of `find-buffer-visiting', the
total runtime becomes 5.1 sec - almost 4x faster.
To test:
(dolist (file (directory-files "/tmp/test/" t "org"))
(unless (get-file-buffer file)
(cl-letf (((symbol-function 'find-buffer-visiting)
(lambda (file &optional predicate)
(when-let ((buf (get-file-buffer file)))
(and (funcall predicate buf) buf)))))
(find-file-noselect file))))
With `get-file-buffer' instead of `find-buffer-visiting', matching
against the opened buffers no longer dominates the profiler. See the
attached cpu-profile-get-file-buffer.
So, it looks like caching `get-file-buffer' is not really necessary.
From the profile, the slowest parts of `find-buffer-visiting' are the
two loops checking `buffer-file-truename' and `buffer-file-number' with
most of the time apparently spent executing `with-current-buffer'. I
tested whether `with-current-buffer' is the culprit by replacing it with
`buffer-local-value' calls:
(defun find-buffer-visiting (filename &optional predicate)
"Return the buffer visiting file FILENAME (a string).
This is like `get-file-buffer', except that it checks for any buffer
visiting the same file, possibly under a different name.
If PREDICATE is non-nil, only buffers satisfying it are eligible,
and others are ignored. PREDICATE is called with the buffer as
the only argument, but not with the buffer as the current buffer.
If there is no such live buffer, return nil."
(let ((predicate (or predicate #'identity))
(truename (abbreviate-file-name (file-truename filename))))
(or (let ((buf (get-file-buffer filename)))
(when (and buf (funcall predicate buf)) buf))
(let ((list (buffer-list)) found)
(while (and (not found) list)
(if (and (buffer-local-value 'buffer-file-name (car list))
(string= (buffer-local-value 'buffer-file-truename (car list)) truename)
(funcall predicate (car list)))
(setq found (car list)))
(setq list (cdr list)))
found)
(let* ((attributes (file-attributes truename))
(number (file-attribute-file-identifier attributes))
(list (buffer-list)) found)
(and buffer-file-numbers-unique
(car-safe number) ;Make sure the inode is not just nil.
(while (and (not found) list)
(if (and (buffer-local-value 'buffer-file-name (car list))
(equal (buffer-local-value 'buffer-file-number (car list)) number)
;; Verify this buffer's file number
;; still belongs to its file.
(file-exists-p (buffer-local-value 'buffer-file-name (car list)))
(equal (file-attributes (buffer-local-value 'buffer-file-truename (car list)))
attributes)
(funcall predicate (car list)))
(setq found (car list)))
(setq list (cdr list))))
found))))
The result is 7.8 sec execution time - much better compared to 18.8
seconds in `with-current-buffer' version, but still worse compared to
5.1 sec in `get-file-buffer' version. See the attached
cpu-profile-buffer-local-value.
So, using `with-current-buffer' when looping over all the buffers is
certainly not optimal (maybe in other places as well).
However, even `buffer-local-value' is still costly - it adds up over 50%
run time.
Also, looking at the 5.1 sec profile, there are other things that may
slow down opening a large number of files:
0. GC (as usual)
1. hack-local-variables
2. vc-refresh-state
3. uniquify--create-file-buffer-advice -> uniquify-rationalize-file-buffer-names
4. Org mode loading (nothing new here for me)
[-- Attachment #2: cpu-profile --]
[-- Type: application/octet-stream, Size: 60391 bytes --]
[profiler-profile "28.1" cpu #s(hash-table size 325 test equal rehash-size 1.5 rehash-threshold 0.8125 data ([nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 8 [redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 12 [org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 31 [require byte-code org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 16 [require byte-code require byte-code org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 19 [require byte-code org-babel-do-load-languages custom-initialize-reset custom-declare-variable byte-code org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let] 4 [custom-add-to-group custom-handle-keyword custom-declare-variable byte-code org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 3 [require byte-code require byte-code require byte-code require byte-code org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect] 3 [require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 7 [require byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let] 27 [require byte-code require byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect] 19 [tool-bar-local-item-from-menu byte-code defvar require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if] 3 [require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 7 [decode-coding-string "#<compiled -0x70321de29603a99>" mapcar byte-code defvar require byte-code require byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist] 3 [require byte-code require byte-code require byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file] 13 [function funcall eval custom-initialize-reset custom-declare-variable byte-code require byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode] 3 [require byte-code require byte-code require byte-code require byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode] 11 [jit-lock-refontify font-lock-flush elisp--font-lock-flush-elisp-buffers do-after-load-evaluation require byte-code require byte-code require byte-code require byte-code require byte-code require byte-code] 7 [require byte-code require byte-code require byte-code require byte-code require byte-code require byte-code require byte-code require org-load-modules-maybe] 13 [require byte-code require byte-code require byte-code require byte-code require byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0] 9 [require byte-code require byte-code require byte-code require byte-code require byte-code require byte-code require byte-code require byte-code] 15 [byte-compile-constants-vector byte-compile-out-toplevel byte-compile-top-level byte-compile-lambda byte-compile-function-form byte-compile-form byte-compile-top-level "#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_49>" byte-compile cl--generic-get-dispatcher cl--generic-make-next-function cl--generic-make-function cl-generic-define-method byte-code require byte-code] 3 [format byte-code defconst require byte-code require byte-code require byte-code require byte-code require byte-code require byte-code require] 3 [make-closure key-valid-p keymap--check keymap-set define-keymap byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file] 3 [key-parse keymap-set define-keymap byte-code require byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file] 2 ["#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_12>" mapcar org-fold-core--property-symbol-get-create org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let] 3 [org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 4 [require require byte-code org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 3 [elisp--font-lock-flush-elisp-buffers do-after-load-evaluation require byte-code require byte-code org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if] 3 [abbreviate-file-name let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil] 17 [getenv vc-sccs-search-project-dir vc-possible-master "#<compiled 0x47f20649bdec3af>" mapcar vc-check-master-templates vc-default-registered vc-sccs-registered vc-call-backend "#<compiled -0xb679acdb558840c>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file] 4 [org-macro--find-keyword-value org-macro--collect-macros org-macro-initialize-templates org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 56 [dir-locals--all-files locate-dominating-file dir-locals-find-file hack-dir-local--get-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 56 [set-buffer save-current-buffer while and let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 2212 [insert-file-contents find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil] 37 [org-set-font-lock-defaults org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 6 [set-buffer save-current-buffer while let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 2358 ["#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_14>" mapcar org-fold-core--property-symbol-get-create org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let] 3 [file-remote-p set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 14 [locate-dominating-file vc-find-root vc-hg-registered vc-call-backend "#<compiled -0xa9702cdb558840c>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while] 48 [save-current-buffer while and let* or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 926 [dir-locals--all-files locate-dominating-file dir-locals-find-file hack-dir-local--get-variables hack-dir-local-variables hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if] 72 [save-current-buffer while and let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 1018 [locate-dominating-file dir-locals-find-file hack-dir-local--get-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 10 [global-eldoc-mode-enable-in-buffers run-hooks run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 4 [org--set-faces-extend org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 3 [save-current-buffer while let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 1042 [assoc-default set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 3 [inhibit-local-variables-p set-auto-mode-1 hack-local-variables-prop-line hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 36 [save-current-buffer while let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 946 [file-truename abbreviate-file-name let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 17 [set-buffer save-current-buffer while and let* or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 2208 [file-name-sans-versions set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 9 [org-persist--find-index org-persist--add-to-index org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 3 [locate-dominating-file vc-find-root vc-bzr-registered vc-call-backend "#<compiled -0xb3fd6cdb558840c>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while] 52 [set-buffer save-current-buffer while let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 2215 [abbreviate-file-name locate-dominating-file dir-locals-find-file hack-dir-local--get-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 14 [org-id-uuid org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 59 [file-truename file-truename abbreviate-file-name let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 8 [lookup-key easy-menu-lookup-name "#<compiled 0x13deef3096ffb1fb>" mapcar easy-menu-get-map easy-menu-add-item easy-menu-change org-install-agenda-files-menu org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect] 11 [set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 3 [regexp-quote org-macro--find-keyword-value org-macro--collect-macros org-macro-initialize-templates org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 3 [locate-dominating-file vc-find-root vc-svn-registered vc-call-backend "#<compiled -0xba326cdb558840c>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while] 48 [file-truename file-truename file-truename find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil] 8 [file-name-nondirectory vc-check-master-templates vc-default-registered vc-sccs-registered vc-call-backend "#<compiled -0xb8906cdb558840c>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let] 3 [string-match assoc-default set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 32 [abbreviate-file-name locate-dominating-file vc-find-root vc-hg-registered vc-call-backend "#<compiled -0xb92b2cdb558840c>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let] 25 [sgml-html-meta-auto-coding-function find-auto-coding select-safe-coding-system org-persist--normalize-associated org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if] 10 [set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 53 [file-remote-p hack-dir-local--get-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 3 [sgml-html-meta-auto-coding-function find-auto-coding set-auto-coding insert-file-contents find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 10 [equal and if save-current-buffer while and let* or let find-buffer-visiting find-file-noselect if let while let progn] 168 [org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 16 [uniquify-rationalize-file-buffer-names uniquify--create-file-buffer-advice create-file-buffer find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil] 661 [file-truename abbreviate-file-name let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil] 17 [file-directory-p find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil nil] 3 [org-element-restriction org-macro--find-date org-macro--collect-macros org-macro-initialize-templates org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 3 [file-exists-p "#<compiled 0x1c013a749bdec3af>" mapcar vc-check-master-templates vc-default-registered vc-sccs-registered vc-call-backend "#<compiled -0xb4a6acdb558840c>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect] 13 [file-name-sans-versions inhibit-local-variables-p hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 27 [file-truename file-truename find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil] 13 [dir-locals-find-file hack-dir-local--get-variables hack-dir-local-variables hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 12 [font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let] 3 [get-file-buffer let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 19 [gethash org-persist--find-index org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 6 [org-fold-core-get-folding-spec-from-alias org-fold-core-set-folding-spec-property "#<compiled -0x426f07672d13921>" org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let] 4 [reverse regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt org-make-options-regexp org--collect-keywords-1 org-collect-keywords org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode] 3 [org-persist--normalize-associated org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 43 [org-extract-log-state-settings org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 4 [file-truename find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil nil] 15 [file-exists-p "#<compiled 0x1cea018c9bdec3af>" mapcar vc-check-master-templates vc-default-registered vc-rcs-registered vc-call-backend "#<compiled -0x1cd9b2cdb558840c>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect] 13 [add-hook "#<compiled -0x12edfa46083b8890>" run-hooks apply run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 3 [get-file-buffer let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 7 [alist-get org-fold-core-get-folding-spec-from-alias org-fold-core-set-folding-spec-property "#<compiled -0x426f0713907f921>" org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if] 4 [org-fold-core-set-folding-spec-property "#<compiled -0x426f07672d13921>" org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 14 [cdr uniquify-rationalize-file-buffer-names uniquify--create-file-buffer-advice create-file-buffer find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 10 [intern org-fold-core--property-symbol-get-create org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 7 [file-newer-than-file-p after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil] 11 [regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt org-make-options-regexp org--collect-keywords-1 org-collect-keywords org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect] 9 [file-remote-p hack-dir-local--get-variables hack-dir-local-variables hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 7 [abbreviate-file-name locate-dominating-file vc-find-root vc-bzr-registered vc-call-backend "#<compiled 0xf93fa6eba59451f>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let] 11 [set-face-attribute set-face-extend "#<compiled -0x141516b6144d5b8e>" org--set-faces-extend org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 3 [file-name-sans-versions inhibit-local-variables-p set-auto-mode-1 hack-local-variables-prop-line hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let] 4 [abbreviate-file-name locate-dominating-file vc-find-root vc-svn-registered vc-call-backend "#<compiled -0x1ca52acdb558840c>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let] 45 [let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil nil] 3 [org-persist--normalize-container org-persist--normalize-container org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 3 [equal and if save-current-buffer while and let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp] 122 [easy-menu-get-map easy-menu-add-item easy-menu-change org-install-agenda-files-menu org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 4 [string= and if save-current-buffer while let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp] 64 [locate-dominating-file vc-find-root vc-git-registered vc-call-backend "#<compiled -0x14d7facdb558840c>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while] 23 [file-name-sans-versions inhibit-local-variables-p hack-local-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 4 [org-persist--remove-from-index org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 24 [make-closure seq-filter hack-local-variables--find-variables hack-local-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 3 ["#<compiled -0x141516b6144dbf8e>" org--set-faces-extend org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 3 [and while let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 6 [auto-coding-alist-lookup find-auto-coding select-safe-coding-system org-persist--normalize-associated org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if] 12 [file-name-sans-versions inhibit-local-variables-p set-auto-mode-1 set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 10 [string= and if save-current-buffer while let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp] 92 [files--transform-file-name make-lock-file-name insert-file-contents find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 10 [abbreviate-file-name locate-dominating-file vc-find-root vc-git-registered vc-call-backend "#<compiled -0x1d9606cdb558840c>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let] 20 [org-persist-read org-persist-load org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 11 [files--transform-file-name make-auto-save-file-name after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 6 [vc-file-clearprops vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 7 [vc-make-backend-sym vc-default-registered vc-rcs-registered vc-call-backend "#<compiled -0x153b7ecdb558840c>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while] 3 [abbreviate-file-name locate-dominating-file dir-locals-find-file hack-dir-local--get-variables hack-dir-local-variables hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if] 16 [delete-dups org-fold-core--property-symbol-get-create org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 6 [abbreviate-file-name find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil nil] 34 [file-exists-p "#<compiled 0x64c03e09bdec3af>" mapcar vc-check-master-templates vc-default-registered vc-src-registered vc-call-backend "#<compiled -0x14ab26cdb558840c>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect] 17 [while and let* or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 4 [find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil nil nil] 3 [not and while let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 12 [file-truename file-truename file-truename abbreviate-file-name let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 3 [replace-regexp-in-string org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 6 [file-name-sans-versions inhibit-local-variables-p set-auto-mode-1 hack-local-variables-prop-line hack-local-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 12 [string-match org-fold-core--property-symbol-get-create org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 13 [and if save-current-buffer while and let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp] 34 [regexp-opt-group regexp-opt-group regexp-opt org-make-options-regexp org--collect-keywords-1 org-collect-keywords org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if] 3 [hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 3 [while let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 14 [org-babel-hide-all-hashes run-hooks apply run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 20 [auto-coding-alist-lookup find-auto-coding set-auto-coding insert-file-contents find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 20 [regexp-opt org-make-options-regexp org--collect-keywords-1 org-collect-keywords org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 6 [expand-file-name vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 7 [file-truename file-truename abbreviate-file-name let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 10 [throw "#<compiled -0x188d0948570f756c>" map-keymap easy-menu-lookup-name "#<compiled 0x13deef31abe051fb>" mapcar easy-menu-get-map easy-menu-add-item easy-menu-change org-install-agenda-files-menu org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file] 6 [inhibit-local-variables-p hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 29 [called-interactively-p font-lock-mode font-lock-change-mode text-mode outline-mode org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 4 [cdr buffer-list let* or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 7 [regexp-opt-group regexp-opt org-make-options-regexp org--collect-keywords-1 org-collect-keywords org-macro--collect-macros org-macro-initialize-templates org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if] 3 [mapcar "#<compiled 0x1840833841898cb4>" apply seq-map seq-filter hack-local-variables--find-variables hack-local-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 4 [let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 4 [string-match vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 3 [org-fold-core-get-folding-spec-from-alias "#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_14>" mapcar org-fold-core--property-symbol-get-create org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if] 3 [vc-call-backend "#<compiled -0x155c3ecdb558840c>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 8 [add-hook font-lock-turn-on-thing-lock font-lock-mode-internal font-lock-default-function font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file] 3 [cdr setq while and let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 15 [org--collect-keywords-1 org-collect-keywords org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 16 [and if save-current-buffer while let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 29 [cl-mapcan org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 7 [while let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 13 [inhibit-local-variables-p set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 33 [buffer-list let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 17 [make-lock-file-name insert-file-contents find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil] 11 [org-fold-core--property-symbol-get-create "#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_12>" mapcar org-fold-core--property-symbol-get-create org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if] 7 [and if save-current-buffer while and let* or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp] 27 [generate-new-buffer create-file-buffer find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil] 41 [car set-buffer save-current-buffer while and let* or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp] 16 [delete-dups regexp-opt org-make-options-regexp org--collect-keywords-1 org-collect-keywords org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let] 3 [abbreviate-file-name let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil] 6 [file-remote-p hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 3 [set-match-data "#<compiled 0xb4ba1a148e0af>" abbreviate-file-name locate-dominating-file vc-find-root vc-svn-registered vc-call-backend "#<compiled -0x199196cdb558840c>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect] 3 [jit-lock-refontify jit-lock-mode jit-lock-register font-lock-turn-on-thing-lock font-lock-mode-internal font-lock-default-function font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode] 8 [add-hook font-lock-turn-on-thing-lock font-lock-mode-internal font-lock-default-function font-lock-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 4 [inhibit-local-variables-p hack-local-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 17 [set-auto-mode-1 hack-local-variables-prop-line hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 3 [buffer-list org-install-agenda-files-menu org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 21 [text-mode outline-mode org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 6 [regexp-opt org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 3 [org-find-invisible-foreground org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 4 [and while let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 16 [org--collect-keywords-1 org-collect-keywords org-macro--collect-macros org-macro-initialize-templates org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 14 [org-install-agenda-files-menu org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 22 [get-file-buffer find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil nil] 18 [if save-current-buffer while and let* or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 6 [if save-current-buffer while let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 3 [and if save-current-buffer while let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 18 [setq while let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 13 [setq while and let* or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 6 [car set-buffer save-current-buffer while let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 19 [font-lock-specified-p font-lock-default-function font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 3 [font-lock-mode font-lock-change-mode text-mode outline-mode org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 4 [set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 6 [and while and let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 7 [uniquify-rationalize-conflicting-sublist uniquify-rationalize-a-list uniquify-rationalize uniquify-rationalize-file-buffer-names uniquify--create-file-buffer-advice create-file-buffer find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 3 [font-lock-turn-on-thing-lock font-lock-mode-internal font-lock-default-function font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1] 3 [cdr buffer-list let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 6 [after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil] 3 [file-attributes find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil nil] 4 [inhibit-local-variables-p set-auto-mode-1 set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 10 [cdr buffer-list let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 3 [file-writable-p after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil] 3 [org-macro--find-keyword-value org-macro--find-date org-macro--collect-macros org-macro-initialize-templates org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 9 [file-name-directory find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil] 3 [inhibit-local-variables-p set-auto-mode-1 hack-local-variables-prop-line hack-local-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 19 [format vc-possible-master "#<compiled -0x129484f364213c51>" mapcar vc-check-master-templates vc-default-registered vc-rcs-registered vc-call-backend "#<compiled -0x33232cdb558840c>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1] 4 [find-auto-coding select-safe-coding-system org-persist--normalize-associated org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let] 6 [buffer-list let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 3 [buffer-list let* or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 11 [add-hook font-lock-mode-internal font-lock-default-function font-lock-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 3 [global-font-lock-mode-cmhh text-mode outline-mode org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 3 [setq while and let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 3 [looking-at set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 3 [org-macro-initialize-templates org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 7 [find-file-name-handler vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 6 ["#<compiled 0xc570fa3cbbbffce>" add-hook jit-lock-mode jit-lock-register font-lock-turn-on-thing-lock font-lock-mode-internal font-lock-default-function font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist] 4 [and while and let* or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 9 [add-hook jit-lock-register font-lock-turn-on-thing-lock font-lock-mode-internal font-lock-default-function font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode] 3 [font-lock-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 3 [format org-fold-core--property-symbol-get-create org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 14 [hack-local-variables--find-variables hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 20 [if save-current-buffer while let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 9 [easy-menu-convert-item easy-menu-create-menu easy-menu-change org-install-agenda-files-menu org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 6 [locate-dominating-file dir-locals-find-file hack-dir-local--get-variables hack-dir-local-variables hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let] 3 [uniquify--create-file-buffer-advice create-file-buffer find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil] 6 [if save-current-buffer while and let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 9 [global-font-lock-mode-enable-in-buffers run-hooks normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 4 [org-babel-result-hide-spec run-hooks apply run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 3 [org-persist--add-to-index org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 7 [set-face-attribute set-face-foreground org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 4 [not and while and let* or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 10 [org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 7 [hack-local-variables--find-variables hack-local-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 20 [add-hook jit-lock-mode jit-lock-register font-lock-turn-on-thing-lock font-lock-mode-internal font-lock-default-function font-lock-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 3 [find-auto-coding set-auto-coding insert-file-contents find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 11 [search-forward find-auto-coding set-auto-coding insert-file-contents find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 3 [org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 6 [add-hook vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 3 [alist-get "#<compiled 0xc570fa3cbbbffce>" add-hook font-lock-mode-internal font-lock-default-function font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode] 3 [not and while let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 4 ["#<compiled 0x520fae4f5a085dc>" org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 9 [add-hook org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 3 [setq while let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 4 ["#<compiled 0xb4ba1a148e0af>" files--transform-file-name make-auto-save-file-name after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 3 [provided-mode-derived-p derived-mode-p org-install-agenda-files-menu org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 3 [cdr setq while let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 3 [org-cycle-set-startup-visibility org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 3 [file-attributes let* or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 6 [last org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 3 [file-truename file-truename file-truename abbreviate-file-name let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 7 [while and let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 12 [font-lock-compile-keyword font-lock-compile-keywords font-lock-set-defaults font-lock-mode-internal font-lock-default-function font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode] 6 [cdr setq while let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 9 ["#<compiled 0x1980034abd99>" add-hook text-mode outline-mode org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 7 [dir-locals-find-file hack-dir-local--get-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 3 [org-element--cache-setup-change-functions org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 3 [select-safe-coding-system org-persist--normalize-associated org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 3 [cdr buffer-list org-install-agenda-files-menu org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 3 [car set-buffer save-current-buffer while let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 3 [cdr setq while and let* or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 3 [string-prefix-p create-file-buffer find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil] 4 [org-setup-filling org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 3 [regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt org-make-options-regexp org--collect-keywords-1 org-collect-keywords org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode] 3 [not and while and let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 3 [expand-file-name vc-cvs-registered vc-call-backend "#<compiled -0xcb4facdb558840c>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while let] 3 [set-auto-mode-1 hack-local-variables-prop-line hack-local-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 3 [car set-buffer save-current-buffer while and let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp] 3 [let* or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 3 [seq-find org-cite-get-processor org-cite-try-load-processor org-set-font-lock-defaults org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 3 [org-cite-get-processor org-cite-try-load-processor org-set-font-lock-defaults org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 7 [format-decode insert-file-contents find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil] 3 [jit-lock-context-fontify "#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_9>" apply timer-event-handler nil nil nil nil nil nil nil nil nil nil nil nil] 14 [redisplay_internal\ \(C\ function\) completing-read-default read-extended-command-1 read-extended-command byte-code command-execute nil nil nil nil nil nil nil nil nil nil] 11 [try-completion complete-with-action "#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_54>" completion-basic-try-completion "#<compiled 0x1f845b097ce1eb04>" completion--some completion--nth-completion completion-try-completion completion--do-completion completion--in-region-1 "#<compiled -0x1426878d9d0164b7>" apply "#<compiled -0xf522f70719e9a2>" completion--in-region completion-in-region minibuffer-complete] 18 [completing-read-default read-extended-command-1 read-extended-command byte-code command-execute nil nil nil nil nil nil nil nil nil nil nil] 7 [self-insert-command funcall-interactively command-execute completing-read-default read-extended-command-1 read-extended-command byte-code command-execute nil nil nil nil nil nil nil nil] 1 [Automatic\ GC nil] 2096 [profiler-report funcall-interactively command-execute execute-extended-command funcall-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 6)) (25874 53178 230250 476000) nil]
[-- Attachment #3: cpu-profile-get-file-buffer --]
[-- Type: application/octet-stream, Size: 57195 bytes --]
[profiler-profile "28.1" cpu #s(hash-table size 325 test equal rehash-size 1.5 rehash-threshold 0.8125 data ([redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 16 [nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 5 [frame-parameter if eval redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil] 3 [function-get macroexp--expand-all macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 1 [find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 16 [org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn] 23 [require byte-code require byte-code org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 17 [require byte-code org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while] 19 [autoload load require byte-code org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 3 [make-temp-file byte-code defvar require byte-code org-babel-do-load-languages custom-initialize-reset custom-declare-variable byte-code org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1] 3 [require byte-code require byte-code require byte-code org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect] 4 [regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group] 3 [require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while] 9 [require byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect] 22 [key-parse keymap-set define-keymap byte-code defvar require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1] 3 [make-closure key-valid-p keymap--check keymap-set define-keymap byte-code defvar require byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist] 3 [key-parse keymap-set define-keymap byte-code defvar require byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode] 3 [tool-bar-local-item-from-menu byte-code defvar require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn] 3 [require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 7 [require byte-code require byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect] 17 [require byte-code require byte-code require byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file] 9 [cl--plist-to-alist cl-struct-define byte-code require byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1] 4 [require byte-code require byte-code require byte-code require byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode] 13 [require byte-code require byte-code require byte-code require byte-code require byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0] 17 [require byte-code require byte-code require byte-code require byte-code require byte-code require byte-code require byte-code require byte-code] 17 [require byte-code require byte-code require byte-code require byte-code require byte-code require byte-code require byte-code require org-load-modules-maybe] 9 [custom-add-option require byte-code require byte-code require byte-code require byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist] 4 [make-byte-code byte-compile-lambda byte-compile-function-form byte-compile-form byte-compile-top-level "#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_49>" byte-compile cl--generic-get-dispatcher cl--generic-make-next-function cl--generic-make-function cl-generic-define-method byte-code require byte-code require byte-code] 3 [cconv-convert cconv-convert "#<compiled 0x1e37bdef5a5ff6d0>" cconv--convert-funcbody cconv--convert-function cconv-convert cconv-closure-convert byte-compile-preprocess "#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_49>" byte-compile cl--generic-get-dispatcher cl--generic-make-next-function cl--generic-make-function cl-generic-define-method byte-code require] 3 [byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let*] 4 [org-fold-core--property-symbol-get-create org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 16 [org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let] 10 [require byte-code org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let] 3 [regexp-opt-charset regexp-opt-group regexp-opt rx--translate-or rx--translate-form rx--translate rx--translate-seq rx--translate-rep rx--translate-form rx--translate rx--translate-seq rx--translate-rep rx--translate-form rx--translate rx--translate-seq rx--translate-form] 3 [file-name-sans-versions inhibit-local-variables-p set-auto-mode-1 hack-local-variables-prop-line hack-local-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while] 10 [dir-locals--all-files locate-dominating-file dir-locals-find-file hack-dir-local--get-variables hack-dir-local-variables hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn] 53 [abbreviate-file-name locate-dominating-file vc-find-root vc-svn-registered vc-call-backend "#<compiled 0x27acacd947ebbf4>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect] 43 [uniquify-rationalize-file-buffer-names uniquify--create-file-buffer-advice create-file-buffer find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 752 [outline-mode org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let] 10 [format org-macro--find-keyword-value org-macro--find-date org-macro--collect-macros org-macro-initialize-templates org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let*] 3 [locate-dominating-file vc-find-root vc-svn-registered vc-call-backend "#<compiled 0x21752cd947ebbf4>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let*] 52 [get-file-buffer and let* find-buffer-visiting find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 19 [file-name-sans-versions set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp] 6 [org--collect-keywords-1 org-collect-keywords org-macro--collect-macros org-macro-initialize-templates org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 27 [vc-find-root vc-svn-registered vc-call-backend "#<compiled 0x24b32cd947ebbf4>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 3 [add-hook outline-mode org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while] 3 [org-setup-filling org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let] 3 [org--collect-keywords-1 org-collect-keywords org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let] 42 [locate-dominating-file vc-find-root vc-hg-registered vc-call-backend "#<compiled 0x3d8eecd947ebbf4>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let*] 55 [inhibit-local-variables-p set-auto-mode-1 set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp] 16 [regexp-opt-group regexp-opt-group regexp-opt org-make-options-regexp org--collect-keywords-1 org-collect-keywords org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn] 9 [dir-locals-find-file hack-dir-local--get-variables hack-dir-local-variables hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let*] 10 [file-truename find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 24 [file-remote-p hack-dir-local--get-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp] 10 [delete-dups org-fold-core--property-symbol-get-create org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let*] 10 [file-exists-p "#<compiled 0x45a29b257dec3af>" mapcar vc-check-master-templates vc-default-registered vc-sccs-registered vc-call-backend "#<compiled 0x24162cd947ebbf4>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect] 16 [file-truename file-truename file-truename find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 8 [after-insert-file-set-coding insert-file-contents find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 3 [uniquify--create-file-buffer-advice create-file-buffer find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 10 [inhibit-local-variables-p set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp] 45 [org-id-uuid org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 28 [inhibit-local-variables-p hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let] 40 [locate-dominating-file vc-find-root vc-bzr-registered vc-call-backend "#<compiled 0x2a1d2cd947ebbf4>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let*] 56 [cconv-analyze-form cconv--analyze-function cconv-analyze-form cconv-fv cconv-make-interpreted-closure function let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 4 [generate-new-buffer create-file-buffer find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 23 [expand-file-name vc-cvs-registered vc-call-backend "#<compiled 0x2d666cd947ebbf4>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 7 [string-match assoc-default set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn] 26 [format org-fold-core--property-symbol-get-create org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let*] 17 [org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let] 13 [file-writable-p after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 4 [dir-locals--all-files locate-dominating-file dir-locals-find-file hack-dir-local--get-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let] 48 [alist-get org-fold-core-get-folding-spec-from-alias org-fold-core-set-folding-spec-property "#<compiled -0x426e37c150d4921>" org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn] 6 [string-match org-fold-core--property-symbol-get-create org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let*] 20 [locate-dominating-file vc-find-root vc-git-registered vc-call-backend "#<compiled 0x40d2ecd947ebbf4>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let*] 41 [add-hook font-lock-turn-on-thing-lock font-lock-mode-internal font-lock-default-function font-lock-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let] 4 [file-name-directory vc-check-master-templates vc-default-registered vc-src-registered vc-call-backend "#<compiled 0x4f352cd947ebbf4>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect] 3 [abbreviate-file-name locate-dominating-file vc-find-root vc-bzr-registered vc-call-backend "#<compiled 0x4fe0acd947ebbf4>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect] 22 [abbreviate-file-name locate-dominating-file vc-find-root vc-hg-registered vc-call-backend "#<compiled 0x4f45acd947ebbf4>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect] 19 [cconv--analyze-function cconv-analyze-form cconv-fv cconv-make-interpreted-closure function let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 7 [expand-file-name vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp] 4 [if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil nil nil nil] 3 [get-file-buffer if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil nil nil] 23 [inhibit-local-variables-p set-auto-mode-1 hack-local-variables-prop-line hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let*] 36 [set-face-extend "#<compiled -0x14151ece28c19b8e>" org--set-faces-extend org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let] 4 [re-search-forward org-macro--find-keyword-value org-macro--collect-macros org-macro-initialize-templates org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 3 [auto-coding-regexp-alist-lookup find-auto-coding select-safe-coding-system org-persist--normalize-associated org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn] 8 ["#<compiled -0x1367859120f61499>" "#<compiled 0x9dfcef2c7cfd12e>" mapc seq-do seq-find org-cite-get-processor org-cite-try-load-processor org-set-font-lock-defaults org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect] 3 [file-remote-p set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp] 13 [regexp-opt-group regexp-opt-group regexp-opt org-make-options-regexp org--collect-keywords-1 org-collect-keywords org-macro--collect-macros org-macro-initialize-templates org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect] 3 [file-newer-than-file-p after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 10 [uniquify-rationalize uniquify-rationalize-file-buffer-names uniquify--create-file-buffer-advice create-file-buffer find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 6 [file-truename file-truename find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 12 [org-macro--find-keyword-value org-macro--collect-macros org-macro-initialize-templates org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let] 91 [org-persist-read org-persist-load org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while] 10 [org-install-agenda-files-menu org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let] 15 [dir-locals-find-file hack-dir-local--get-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp] 7 [vc-possible-master "#<compiled 0x1d7cc5f257dec3af>" mapcar vc-check-master-templates vc-default-registered vc-rcs-registered vc-call-backend "#<compiled 0x52aa2cd947ebbf4>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect] 3 [search-forward find-auto-coding select-safe-coding-system org-persist--normalize-associated org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn] 4 [add-to-list global-font-lock-mode-cmhh text-mode outline-mode org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 3 [add-hook font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while] 7 [font-lock-turn-on-thing-lock font-lock-mode-internal font-lock-default-function font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1] 7 [inhibit-local-variables-p hack-local-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp] 10 [vc-file-setprop vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn] 9 [vc-file-clearprops vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp] 21 [file-name-sans-versions inhibit-local-variables-p set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp] 4 [org-babel-hide-all-hashes run-hooks apply run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 26 [sgml-html-meta-auto-coding-function find-auto-coding set-auto-coding insert-file-contents find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp] 17 [cconv-make-interpreted-closure function let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil] 6 [org-persist--normalize-associated org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 28 [file-name-directory vc-check-master-templates vc-default-registered vc-sccs-registered vc-call-backend "#<compiled 0x1f6d899b0504051e>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect] 3 [org-macro-initialize-templates org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let] 26 [get-file-buffer find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 23 [org-fold-core-set-folding-spec-property "#<compiled -0x426e367a9760921>" org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let*] 6 [auto-coding-alist-lookup find-auto-coding set-auto-coding insert-file-contents find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp] 29 [current-active-maps easy-menu-get-map easy-menu-add-item easy-menu-change org-install-agenda-files-menu org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let*] 3 ["#<compiled -0x426e36795c08921>" org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 4 [files--transform-file-name make-lock-file-name insert-file-contents find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 6 [hack-local-variables--find-variables hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let] 9 [set-auto-mode-1 hack-local-variables-prop-line hack-local-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn] 7 [auto-coding-alist-lookup find-auto-coding select-safe-coding-system org-persist--normalize-associated org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn] 41 [org-assign-fast-keys org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while] 15 [file-name-nondirectory vc-check-master-templates vc-default-registered vc-sccs-registered vc-call-backend "#<compiled 0x6d2b2cd947ebbf4>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect] 7 [abbreviate-file-name locate-dominating-file vc-find-root vc-git-registered vc-call-backend "#<compiled 0x6cccacd947ebbf4>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect] 28 [org-macro--find-keyword-value org-macro--find-date org-macro--collect-macros org-macro-initialize-templates org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 14 [font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let] 4 [find-file-name-handler make-auto-save-file-name after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 3 [insert-file-contents find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 34 [format vc-possible-master "#<compiled 0x526062657dec3af>" mapcar vc-check-master-templates vc-default-registered vc-src-registered vc-call-backend "#<compiled 0x6417ecd947ebbf4>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1] 3 [locate-dominating-file dir-locals-find-file hack-dir-local--get-variables hack-dir-local-variables hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect] 13 [abbreviate-file-name find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 40 [file-name-sans-versions inhibit-local-variables-p set-auto-mode-1 set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn] 6 [getenv vc-sccs-search-project-dir vc-possible-master "#<compiled 0x1c0a7ba257dec3af>" mapcar vc-check-master-templates vc-default-registered vc-sccs-registered vc-call-backend "#<compiled 0x70992cd947ebbf4>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file] 4 [org-fold-core-get-folding-spec-from-alias org-fold-core-set-folding-spec-property "#<compiled -0x426e37c15678921>" org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect] 4 [intern org-fold-core--property-symbol-get-create org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let*] 3 [regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt org-make-options-regexp org--collect-keywords-1 org-collect-keywords org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode] 7 [org-set-font-lock-defaults org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let] 17 [org-persist--remove-from-index org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let] 17 [file-name-sans-versions inhibit-local-variables-p hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 19 [org--set-faces-extend org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let] 4 [org-persist--normalize-container org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 3 [create-file-buffer find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 3 ["#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_14>" mapcar org-fold-core--property-symbol-get-create org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect] 4 [set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp] 44 [expand-file-name find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 11 [org-fold-core--property-symbol-get-create "#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_12>" mapcar org-fold-core--property-symbol-get-create org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn] 3 [hack-local-variables-filter hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let] 3 [org-fold-core--isearch-setup org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let] 4 [vc-make-backend-sym vc-default-registered vc-rcs-registered vc-call-backend "#<compiled 0x484f2cd947ebbf4>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let*] 4 [set-auto-mode-1 hack-local-variables-prop-line hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 4 [add-hook org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let] 3 [file-modes after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 3 [reverse regexp-opt-group regexp-opt-group regexp-opt org-make-options-regexp org--collect-keywords-1 org-collect-keywords org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect] 3 [mapcar vc-check-master-templates vc-default-registered vc-sccs-registered vc-call-backend "#<compiled 0xb257ecd947ebbf4>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect] 3 [select-safe-coding-system org-persist--normalize-associated org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let*] 4 [backup-file-name-p after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 3 [add-hook org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let] 3 [cdr uniquify-rationalize-file-buffer-names uniquify--create-file-buffer-advice create-file-buffer find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 7 ["#<compiled 0x198008571d49>" add-hook org-element--cache-setup-change-functions org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 3 [regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt org-make-options-regexp org--collect-keywords-1 org-collect-keywords org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist] 7 [vc-make-backend-sym vc-default-registered vc-sccs-registered vc-call-backend "#<compiled 0xb4a22cd947ebbf4>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let*] 6 ["#<compiled 0xb51085af320af>" files--transform-file-name make-lock-file-name insert-file-contents find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp] 4 [set-face-attribute set-face-extend "#<compiled -0x14151ece28c17f8e>" org--set-faces-extend org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 3 [abbreviate-file-name locate-dominating-file dir-locals-find-file hack-dir-local--get-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let] 38 [jit-lock-refontify jit-lock-mode jit-lock-register font-lock-turn-on-thing-lock font-lock-mode-internal font-lock-default-function font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode] 4 [alist-get org-fold-core-get-folding-spec-from-alias "#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_14>" mapcar org-fold-core--property-symbol-get-create org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect] 4 [upcase org-collect-keywords org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let] 3 [find-auto-coding set-auto-coding insert-file-contents find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 24 [advice--called-interactively-skip called-interactively-p font-lock-mode font-lock-change-mode text-mode outline-mode org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect] 4 [uniquify-rationalize-conflicting-sublist uniquify-rationalize-a-list uniquify-rationalize uniquify-rationalize-file-buffer-names uniquify--create-file-buffer-advice create-file-buffer find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp] 6 [format org-macro--find-keyword-value org-macro--collect-macros org-macro-initialize-templates org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 3 [regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt org-make-options-regexp org--collect-keywords-1 org-collect-keywords org-set-regexps-and-options org-mode] 7 [org-persist--find-index org-persist--remove-from-index org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 3 [abbreviate-file-name locate-dominating-file dir-locals-find-file hack-dir-local--get-variables hack-dir-local-variables hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn] 24 [vc-call-backend "#<compiled -0x114b1d326b814409>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while] 3 [org-setup-comments-handling org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let] 4 [file-readable-p vc-cvs-registered vc-call-backend "#<compiled -0x115dd9326b814409>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 3 [macroexpand-all cconv-make-interpreted-closure function let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil] 3 [assoc-default set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp] 4 [regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt org-make-options-regexp org--collect-keywords-1 org-collect-keywords org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect] 4 [set-face-attribute set-face-foreground org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while] 7 [file-name-directory vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn] 7 [file-exists-p "#<compiled -0x14f66d59a8213c51>" mapcar vc-check-master-templates vc-default-registered vc-src-registered vc-call-backend "#<compiled -0x1d9201326b814409>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect] 3 [file-exists-p "#<compiled -0x12f7be69a8213c51>" mapcar vc-check-master-templates vc-default-registered vc-rcs-registered vc-call-backend "#<compiled -0x1d9611326b814409>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect] 12 ["#<compiled 0xb51085a1719af>" regexp-opt org-make-options-regexp org--collect-keywords-1 org-collect-keywords org-macro--collect-macros org-macro-initialize-templates org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn] 3 [gethash org-persist--find-index org-persist--add-to-index org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let*] 3 [org-fold-region org-fold-show-all org-cycle-set-startup-visibility org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let] 3 [add-hook org-element--cache-setup-change-functions org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let] 3 [org-persist--add-to-index org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 4 [sgml-html-meta-auto-coding-function find-auto-coding select-safe-coding-system org-persist--normalize-associated org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn] 13 [map-keymap easy-menu-lookup-name "#<compiled 0x13de3b8364ec51fb>" mapcar easy-menu-get-map easy-menu-add-item easy-menu-change org-install-agenda-files-menu org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect] 4 [macroexp--all-forms macroexp--expand-all macroexpand-all cconv-make-interpreted-closure function let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 4 [vc-default-registered vc-sccs-registered vc-call-backend "#<compiled -0x1d1ad9326b814409>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 3 [inhibit-local-variables-p set-auto-mode-1 hack-local-variables-prop-line hack-local-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let] 17 [file-attributes find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 4 [cdr buffer-list org-install-agenda-files-menu org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let] 6 [set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 7 [buffer-list org-install-agenda-files-menu org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while] 7 [sgml-xml-auto-coding-function find-auto-coding select-safe-coding-system org-persist--normalize-associated org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn] 3 [search-forward find-auto-coding set-auto-coding insert-file-contents find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp] 4 [file-directory-p find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 4 [remq remove-hook font-lock-turn-on-thing-lock font-lock-mode-internal font-lock-default-function font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode] 3 [hack-local-variables--find-variables hack-local-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp] 13 [add-hook global-eldoc-mode-cmhh kill-all-local-variables normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp] 3 [reverse regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt org-make-options-regexp org--collect-keywords-1 org-collect-keywords org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist] 3 [abbrev-table-get outline-mode org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while] 3 [find-auto-coding select-safe-coding-system org-persist--normalize-associated org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect] 16 [throw "#<compiled -0x18e8e34c0f7d356c>" map-keymap easy-menu-lookup-name "#<compiled 0x13de3b8364ec51fb>" mapcar easy-menu-get-map easy-menu-add-item easy-menu-change org-install-agenda-files-menu org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file] 3 [string-match vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn] 3 ["#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_26>" cconv--analyze-function cconv-analyze-form cconv-fv cconv-make-interpreted-closure function let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 3 [plist-get org-persist--find-index org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let*] 3 [font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect] 3 [easy-menu-convert-item easy-menu-create-menu easy-menu-change org-install-agenda-files-menu org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 4 [find-new-buffer-file-coding-system after-insert-file-set-coding insert-file-contents find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 3 [set-match-data "#<compiled 0xb51085a1719af>" replace-regexp-in-string org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect] 4 [eq alist-get "#<compiled 0xcd08f22e7bbffce>" add-hook jit-lock-mode jit-lock-register font-lock-turn-on-thing-lock font-lock-mode-internal font-lock-default-function font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks run-mode-hooks org-mode] 4 [replace-regexp-in-string org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 7 ["#<compiled 0xb51085af320af>" abbreviate-file-name locate-dominating-file vc-find-root vc-svn-registered vc-call-backend "#<compiled -0x14a5ed326b814409>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect progn] 3 [regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt org-make-options-regexp org--collect-keywords-1 org-collect-keywords org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file] 3 ["#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_132>" backtrace-frame called-interactively-p auto-save-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp] 3 [regexp-opt org-make-options-regexp org--collect-keywords-1 org-collect-keywords org-macro--collect-macros org-macro-initialize-templates org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect] 4 [format-decode insert-file-contents find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 3 [cdr setq let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil nil nil] 3 ["#<compiled 0x520fae4f5a085dc>" org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 4 [easy-menu-define-key easy-menu-add-item easy-menu-change org-install-agenda-files-menu org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 3 [find-file-name-handler make-auto-save-file-name auto-save-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp] 3 [org-persist--add-to-index org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let] 3 [kill-all-local-variables normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 4 [org-element-restriction org-macro--find-date org-macro--collect-macros org-macro-initialize-templates org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if] 3 [font-lock-compile-keyword font-lock-compile-keywords font-lock-set-defaults font-lock-mode-internal font-lock-default-function font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode] 3 [called-interactively-p font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks normal-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while] 3 [called-interactively-p auto-save-mode after-find-file find-file-noselect-1 find-file-noselect progn unwind-protect let* if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 4 [jit-lock-context-fontify "#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_9>" apply timer-event-handler nil nil nil nil nil nil nil nil nil nil nil nil] 10 [timer-relative-time run-at-time undo-auto--boundary-ensure-timer undo-auto--undoable-change completing-read-default read-extended-command-1 read-extended-command byte-code command-execute nil nil nil nil nil nil nil] 1 [redisplay_internal\ \(C\ function\) completing-read-default read-extended-command-1 read-extended-command byte-code command-execute nil nil nil nil nil nil nil nil nil nil] 3 [completing-read-default read-extended-command-1 read-extended-command byte-code command-execute nil nil nil nil nil nil nil nil nil nil nil] 12 [try-completion complete-with-action "#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_54>" completion-basic-try-completion "#<compiled -0x17f7331e283a14fc>" completion--some completion--nth-completion completion-try-completion completion--do-completion completion--in-region-1 "#<compiled 0x38598f735d29b54>" apply "#<compiled -0xf7c6e963e7a9a2>" completion--in-region completion-in-region minibuffer-complete] 14 [timer-event-handler completing-read-default read-extended-command-1 read-extended-command byte-code command-execute nil nil nil nil nil nil nil nil nil nil] 2 [minibuffer-inactive-mode completing-read-default read-extended-command-1 read-extended-command byte-code command-execute nil nil nil nil nil nil nil nil nil nil] 1 [Automatic\ GC nil] 1869 [profiler-report funcall-interactively command-execute execute-extended-command funcall-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 6)) (25874 53414 475486 299000) nil]
[-- Attachment #4: cpu-profile-buffer-local-value --]
[-- Type: application/octet-stream, Size: 64389 bytes --]
[profiler-profile "28.1" cpu #s(hash-table size 325 test equal rehash-size 1.5 rehash-threshold 0.8125 data ([menu-bar-update-buffers-1 menu-bar-update-buffers redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil] 3 [redisplay_internal\ \(C\ function\) nil nil nil nil nil nil nil nil nil nil nil nil nil nil nil] 30 [parse-partial-sexp syntax-ppss show-paren--default show-paren-function apply timer-event-handler nil nil nil nil nil nil nil nil nil nil] 4 [macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexp--all-forms macroexp--expand-all macroexpand-all elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 1 [org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 38 [require byte-code require byte-code org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 14 [require byte-code org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 20 [org-babel-do-load-languages custom-initialize-reset custom-declare-variable byte-code org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 4 [locate-file locate-library org-version defconst org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 3 [set-face-attribute face-spec-reset-face face-spec-recalc face-spec-set custom-declare-face require byte-code org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if] 3 [require byte-code require byte-code require byte-code org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let] 3 [require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 8 [require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 10 [require byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let] 23 [key-parse keymap-set define-keymap byte-code defvar require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1] 3 [require byte-code require byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect] 20 [tool-bar-local-item-from-menu byte-code defvar require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if] 3 [require byte-code require byte-code require byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file] 13 ["#<compiled 0x19800016fe914>" funcall eval custom-initialize-reset custom-declare-variable byte-code require byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode] 4 [require byte-code require byte-code require byte-code require byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode] 13 [require byte-code require byte-code require byte-code require byte-code require byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0] 15 [require byte-code require byte-code require byte-code require byte-code require byte-code require byte-code require byte-code require org-load-modules-maybe] 7 [require byte-code require byte-code require byte-code require byte-code require byte-code require byte-code require byte-code require byte-code] 11 [custom-declare-variable byte-code require byte-code require byte-code require byte-code require byte-code require byte-code require byte-code require org-load-modules-maybe] 4 [dbus-init-bus dbus--init byte-code require byte-code require byte-code require byte-code require byte-code require byte-code require org-load-modules-maybe org-mode] 3 [byte-optimize-one-form byte-compile-top-level "#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_49>" byte-compile cl--generic-get-dispatcher cl--generic-make-next-function cl--generic-make-function cl-generic-define-method byte-code require byte-code require byte-code require byte-code require] 3 [require require byte-code require byte-code require byte-code require byte-code require byte-code require byte-code require byte-code require] 3 [record cl--make-slot-desc cl-struct-define byte-code require byte-code require byte-code require byte-code require byte-code require byte-code require byte-code] 4 [key-parse keymap-set define-keymap byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect] 4 [key-parse keymap-set define-keymap byte-code require byte-code require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file] 2 [jit-lock-refontify font-lock-flush elisp--font-lock-flush-elisp-buffers do-after-load-evaluation require byte-code require org-load-modules-maybe org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect] 4 [org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 13 [require require byte-code org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 3 [reverse regexp-opt-group regexp-opt org-link-make-regexps org-link-set-parameters byte-code require byte-code require byte-code org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode] 4 [file-truename abbreviate-file-name let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil] 11 [locate-dominating-file vc-find-root vc-hg-registered vc-call-backend "#<compiled -0x130893ea77cb046f>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while] 47 [file-attributes let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 10 [file-truename file-truename file-truename find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil] 18 [file-attributes find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil nil] 6 [file-truename file-truename abbreviate-file-name let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 24 [file-truename abbreviate-file-name let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 30 [abbreviate-file-name locate-dominating-file vc-find-root vc-svn-registered vc-call-backend "#<compiled -0x137a87ea77cb046f>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let] 34 [vc-file-getprop vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 3 [remove-hook global-eldoc-mode-check-buffers run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 4 [inhibit-local-variables-p set-auto-mode-1 hack-local-variables-prop-line hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 45 [dir-locals--all-files locate-dominating-file dir-locals-find-file hack-dir-local--get-variables hack-dir-local-variables hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if] 59 [org-setup-comments-handling org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 4 [plist-get org-persist--find-index org-persist--remove-from-index org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 3 [uniquify-rationalize-file-buffer-names uniquify--create-file-buffer-advice create-file-buffer find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil] 680 [expand-file-name find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil nil] 10 [locate-dominating-file vc-find-root vc-svn-registered vc-call-backend "#<compiled -0x129fc3ea77cb046f>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while] 59 [org-persist-read org-persist-load org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 28 ["#<compiled -0x1434455cc099cc8e>" regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt org-make-options-regexp org--collect-keywords-1 org-collect-keywords org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1] 3 [inhibit-local-variables-p set-auto-mode-1 hack-local-variables-prop-line hack-local-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 38 [vc-file-clearprops vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 13 [easy-menu-define-key easy-menu-add-item easy-menu-change org-install-agenda-files-menu org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 3 [file-writable-p after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil] 7 [file-truename find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil nil] 22 [file-exists-p "#<compiled 0x4c40e0883dec3af>" mapcar vc-check-master-templates vc-default-registered vc-src-registered vc-call-backend "#<compiled -0x12fcd7ea77cb046f>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect] 15 [file-remote-p hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 7 [regexp-opt-group regexp-opt org-make-options-regexp org--collect-keywords-1 org-collect-keywords org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let] 8 [set-auto-mode-1 set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 3 [locate-dominating-file vc-find-root vc-git-registered vc-call-backend "#<compiled -0x132473ea77cb046f>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while] 43 [add-hook org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 9 [looking-at set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 11 [if while let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 23 [org-persist--find-index org-persist--add-to-index org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 6 [dir-locals--all-files locate-dominating-file dir-locals-find-file hack-dir-local--get-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 62 [file-truename file-truename find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil] 10 [inhibit-local-variables-p hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 19 [files--transform-file-name make-auto-save-file-name after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 7 [org-macro--find-keyword-value org-macro--collect-macros org-macro-initialize-templates org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 84 [org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 10 [not and while let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 22 [coding-system-get select-safe-coding-system org-persist--normalize-associated org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let] 4 [sgml-html-meta-auto-coding-function find-auto-coding set-auto-coding insert-file-contents find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 21 [file-truename file-truename file-truename abbreviate-file-name let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 9 [org-id-uuid org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 32 [search-forward find-auto-coding set-auto-coding insert-file-contents find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 11 [vc-file-setprop vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 3 [org-persist--normalize-associated org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 23 [buffer-local-value equal and if while and let* or let find-buffer-visiting find-file-noselect if let while let progn] 651 [get-file-buffer let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 20 [org-macro-initialize-templates org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 23 [find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil nil] 10 [locate-dominating-file vc-find-root vc-bzr-registered vc-call-backend "#<compiled -0x1820fbea77cb046f>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while] 55 [lookup-key easy-menu-lookup-name "#<compiled 0x13ec4630ce3851fb>" mapcar easy-menu-get-map easy-menu-add-item easy-menu-change org-install-agenda-files-menu org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect] 6 [file-name-sans-versions inhibit-local-variables-p hack-local-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 3 [org-persist--add-to-index org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 3 [uniquify-rationalize uniquify-rationalize-file-buffer-names uniquify--create-file-buffer-advice create-file-buffer find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 10 [vc-make-backend-sym vc-default-registered vc-sccs-registered vc-call-backend "#<compiled 0xdd06a9a4f75c51d>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while] 6 [inhibit-local-variables-p set-auto-mode-1 set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 18 [abbreviate-file-name locate-dominating-file vc-find-root vc-git-registered vc-call-backend "#<compiled -0x19c77bea77cb046f>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let] 20 [set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 54 [buffer-local-value equal and if while and let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp] 696 [org-fold-region org-fold-show-all org-cycle-set-startup-visibility org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 10 [abbreviate-file-name let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil] 32 [org-install-agenda-files-menu org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 13 [files--transform-file-name make-lock-file-name insert-file-contents find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 11 [string= and if while let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 47 [car buffer-local-value equal and if while and let* or let find-buffer-visiting if let while let progn] 8 [file-name-sans-versions inhibit-local-variables-p set-auto-mode-1 hack-local-variables-prop-line hack-local-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 6 [replace-regexp-in-string org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 7 [buffer-local-value string= and if while let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp] 43 [org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 8 [file-truename file-truename abbreviate-file-name let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 16 [insert-file-contents find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil] 59 [file-truename file-truename file-truename abbreviate-file-name let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 6 [regexp-opt org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 6 [string-match assoc-default set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 18 [auto-coding-alist-lookup find-auto-coding select-safe-coding-system org-persist--normalize-associated org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if] 50 [car buffer-local-value string= and if while let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp] 6 [org-persist--remove-from-index org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 36 [vc-check-master-templates vc-default-registered vc-rcs-registered vc-call-backend "#<compiled 0xdd4529a4f75c51d>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while] 3 [global-font-lock-mode-enable-in-buffers run-hooks run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 4 [make-local-variable find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil] 4 [gethash org-fold-core--property-symbol-get-create org-fold-region org-fold-show-all org-cycle-set-startup-visibility org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 3 [regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt org-make-options-regexp org--collect-keywords-1 org-collect-keywords org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1] 3 [vc-rcs-registered vc-call-backend "#<compiled -0x10040fea77cb046f>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 3 [get-file-buffer let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 17 [file-remote-p set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 6 [and while and let* or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 18 [auto-coding-regexp-alist-lookup find-auto-coding set-auto-coding insert-file-contents find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 10 [dir-locals-find-file hack-dir-local--get-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 3 [string-match org-fold-core--property-symbol-get-create org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 26 [file-exists-p "#<compiled 0xb96c883dec3af>" mapcar vc-check-master-templates vc-default-registered vc-rcs-registered vc-call-backend "#<compiled -0x18a797ea77cb046f>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect] 15 [and if while and let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 17 [buffer-list org-install-agenda-files-menu org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 11 [inhibit-local-variables-p hack-local-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 38 [inhibit-local-variables-p set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 29 [file-name-sans-versions inhibit-local-variables-p set-auto-mode-1 set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 15 [set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 6 [expand-file-name vc-cvs-registered vc-call-backend "#<compiled -0x189affea77cb046f>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while let] 4 [org-find-invisible-foreground org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 3 [org-macro--find-keyword-value org-macro--find-date org-macro--collect-macros org-macro-initialize-templates org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 29 [not and while let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 6 [turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 3 [and while let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 22 [while let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 7 [outline-mode org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 8 [jit-lock-mode jit-lock-register font-lock-turn-on-thing-lock font-lock-mode-internal font-lock-default-function font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode] 3 [abbreviate-file-name find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil nil] 46 [alist-get "#<compiled 0x1d1e474f83bbffce>" add-hook org-element--cache-setup-change-functions org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 3 [buffer-local-value and if while and let* or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp] 32 [files--transform-file-name make-auto-save-file-name auto-save-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 7 [add-hook outline-mode org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 7 [file-name-directory vc-check-master-templates vc-default-registered vc-sccs-registered vc-call-backend "#<compiled -0x11a5ffea77cb046f>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let] 8 [cdr setq while and let* or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 22 [equal and if while and let* or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp] 12 [select-safe-coding-system org-persist--normalize-associated org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 7 [internal-get-lisp-face-attribute face-attribute face-background org-find-invisible-foreground org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 3 [file-name-sans-versions set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 3 [abbreviate-file-name locate-dominating-file dir-locals-find-file hack-dir-local--get-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 22 [auto-coding-alist-lookup find-auto-coding set-auto-coding insert-file-contents find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 38 [uniquify-rationalize-a-list uniquify-rationalize uniquify-rationalize-file-buffer-names uniquify--create-file-buffer-advice create-file-buffer find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 4 [find-auto-coding set-auto-coding insert-file-contents find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 22 [run-hooks normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 3 [buffer-list let* or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 17 [car buffer-local-value and if while let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp] 12 [cdr setq while and let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 15 [equal and if while and let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp] 21 [buffer-local-value and if while let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 38 [alist-get org-fold-core-get-folding-spec-from-alias "#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_14>" mapcar org-fold-core--property-symbol-get-create org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect] 3 [locate-dominating-file dir-locals-find-file hack-dir-local--get-variables hack-dir-local-variables hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let] 4 [format org-fold-core--property-symbol-get-create org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 17 [file-remote-p hack-dir-local--get-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 12 [org-fold-core--property-symbol-get-create org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 14 [setq while let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 16 [and while and let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 10 [org--collect-keywords-1 org-collect-keywords org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 25 ["#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_14>" mapcar org-fold-core--property-symbol-get-create org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let] 3 [org-set-font-lock-defaults org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 4 [expand-file-name vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 3 [string= and if while let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 35 [get-file-buffer find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil nil] 13 [derived-mode-p font-lock-set-defaults font-lock-mode-internal font-lock-default-function font-lock-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 3 [sgml-xml-auto-coding-function find-auto-coding set-auto-coding insert-file-contents find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 6 [buffer-list let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 13 [file-name-directory find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil] 3 [setq while let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 11 [cdr setq while let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 10 [quote buffer-local-value equal and if while and let* or let find-buffer-visiting if let while let progn] 4 [file-newer-than-file-p after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil] 10 [not and while and let* or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 6 [erase-buffer find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil] 3 [font-lock-mode font-lock-change-mode text-mode outline-mode org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 4 [regexp-opt-group regexp-opt org-make-options-regexp org--collect-keywords-1 org-collect-keywords org-macro--collect-macros org-macro-initialize-templates org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if] 3 [and if while let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 9 [add-hook font-lock-turn-on-thing-lock font-lock-mode-internal font-lock-default-function font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file] 4 [and if while and let* or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 19 [cdr setq while let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 14 [regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt org-make-options-regexp org--collect-keywords-1 org-collect-keywords org-set-regexps-and-options org-mode set-auto-mode-0] 3 [buffer-local-value and if while and let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp] 16 [hack-local-variables--find-variables hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 10 [car buffer-local-value and if while and let* or let find-buffer-visiting find-file-noselect if let while let progn] 7 [and if while let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 12 [regexp-opt-group regexp-opt-group regexp-opt org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 3 [format vc-possible-master "#<compiled -0x12cea1f77c213c51>" mapcar vc-check-master-templates vc-default-registered vc-src-registered vc-call-backend "#<compiled -0x170cd7ea77cb046f>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1] 3 [run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil] 4 [not and while and let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 11 [while and let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 19 [if while and let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 4 [org-fold-core--property-symbol-get-create org-fold-region org-fold-show-all org-cycle-set-startup-visibility org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 3 [alist-get "#<compiled 0x1d1e474f83bbffce>" add-hook jit-lock-mode jit-lock-register font-lock-turn-on-thing-lock font-lock-mode-internal font-lock-default-function font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks run-mode-hooks org-mode set-auto-mode-0] 3 [locate-dominating-file dir-locals-find-file hack-dir-local--get-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 9 [while and let* or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 4 [buffer-local-value string= and if while let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp] 30 [cdr buffer-list org-install-agenda-files-menu org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 3 [buffer-local-value and if while let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 35 [abbreviate-file-name locate-dominating-file vc-find-root vc-bzr-registered vc-call-backend "#<compiled -0x17ba3bea77cb046f>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let] 19 [uniquify-rationalize-conflicting-sublist uniquify-rationalize-a-list uniquify-rationalize uniquify-rationalize-file-buffer-names uniquify--create-file-buffer-advice create-file-buffer find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 11 [kill-all-local-variables normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 4 [auto-coding-regexp-alist-lookup find-auto-coding select-safe-coding-system org-persist--normalize-associated org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if] 8 [setq while and let* or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 9 [add-hook "#<compiled -0x1dd2bf6385bed090>" run-hooks apply run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 3 [uniquify--create-file-buffer-advice create-file-buffer find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil] 4 [abbreviate-file-name let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil] 15 ["#<compiled 0xa575483ce60af>" files--transform-file-name make-auto-save-file-name after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 3 [file-exists-p "#<compiled -0x12118d377c213c51>" mapcar vc-check-master-templates vc-default-registered vc-sccs-registered vc-call-backend "#<compiled -0xe8b97ea77cb046f>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect] 9 [org-delete-all org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 3 [car buffer-local-value string= and if while let or let find-buffer-visiting find-file-noselect if let while let progn] 7 [file-name-sans-versions inhibit-local-variables-p set-auto-mode-1 hack-local-variables-prop-line hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let] 3 [font-lock-specified-p font-lock-default-function font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 7 [org-babel-hide-all-hashes run-hooks apply run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 23 [abbreviate-file-name locate-dominating-file vc-find-root vc-hg-registered vc-call-backend "#<compiled -0xe84d3ea77cb046f>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let] 23 [file-name-sans-versions inhibit-local-variables-p set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 7 [regexp-opt org-make-options-regexp org--collect-keywords-1 org-collect-keywords org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 4 [dir-locals-find-file hack-dir-local--get-variables hack-dir-local-variables hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 3 [current-active-maps easy-menu-get-map easy-menu-add-item easy-menu-change org-install-agenda-files-menu org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 7 [org--collect-keywords-1 org-collect-keywords org-macro--collect-macros org-macro-initialize-templates org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 20 [buffer-list let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 4 [org-fold-core--property-symbol-get-create org-fold-core--property-symbol-get-create org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 4 [org-element-restriction org-macro--find-date org-macro--collect-macros org-macro-initialize-templates org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 6 ["#<compiled 0x2e3911fb793099c>" map-keymap easy-menu-lookup-name "#<compiled 0x13ec4630ce3851fb>" mapcar easy-menu-get-map easy-menu-add-item easy-menu-change org-install-agenda-files-menu org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1] 3 [epa-file-find-file-hook run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 7 [easy-menu-create-menu easy-menu-change org-install-agenda-files-menu org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 4 [hack-local-variables--find-variables hack-local-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 21 [eq alist-get "#<compiled 0x1d1e474f83bbffce>" add-hook text-mode outline-mode org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let] 3 [quote buffer-local-value string= and if while let or let find-buffer-visiting find-file-noselect if let while let progn] 3 [sgml-html-meta-auto-coding-function find-auto-coding select-safe-coding-system org-persist--normalize-associated org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if] 6 [cdr buffer-list let* or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 8 [generate-new-buffer create-file-buffer find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil] 30 [regexp-quote org-macro--find-keyword-value org-macro--collect-macros org-macro-initialize-templates org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 3 [find-auto-coding select-safe-coding-system org-persist--normalize-associated org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let] 7 [gethash org-fold-core--property-symbol-get-create org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 3 [quote buffer-local-value and if while let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp] 3 [vc-make-backend-sym vc-default-registered vc-rcs-registered vc-call-backend "#<compiled -0xfd433ea77cb046f>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while] 3 [cdr buffer-list let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 3 [add-to-list global-eldoc-mode-cmhh kill-all-local-variables normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 3 [car buffer-local-value and if while and let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp] 7 [setq while and let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 19 [while let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 15 [turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 3 [gethash org-persist--find-index org-persist--add-to-index org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 3 [and while let or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute] 14 [provided-mode-derived-p derived-mode-p org-install-agenda-files-menu org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 3 [cdr buffer-list let* or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 3 [car buffer-local-value equal and if while and let* or let find-buffer-visiting find-file-noselect if let while let] 9 [abort-if-file-too-large find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil nil nil] 4 [if while let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 4 [add-hook vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 4 [abbreviate-file-name locate-dominating-file dir-locals-find-file hack-dir-local--get-variables hack-dir-local-variables hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if] 16 [file-attributes let* or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil] 11 [org-setup-filling org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 3 [search-backward hack-local-variables--find-variables hack-local-variables set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 3 [org-persist--add-to-index org-persist--get-collection org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 3 [obarray-get abbrev-table-get org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 4 [if while and let* or let find-buffer-visiting find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 3 [re-search-forward org-macro--find-keyword-value org-macro--find-date org-macro--collect-macros org-macro-initialize-templates org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 4 [copy-tree font-lock-default-function font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 3 [font-lock-compile-keyword font-lock-compile-keywords font-lock-set-defaults font-lock-mode-internal font-lock-default-function font-lock-mode turn-on-font-lock turn-on-font-lock-if-desired global-font-lock-mode-enable-in-buffers run-hooks run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode] 3 [jit-lock-refontify jit-lock-mode jit-lock-register font-lock-turn-on-thing-lock font-lock-mode-internal font-lock-default-function font-lock-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 3 [set-match-data "#<compiled 0xa575483ce60af>" abbreviate-file-name locate-dominating-file vc-find-root vc-hg-registered vc-call-backend "#<compiled -0xc5e37ea77cb046f>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect] 3 [file-readable-p vc-cvs-registered vc-call-backend "#<compiled -0xdc5f7ea77cb046f>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while let] 4 [file-name-sans-versions inhibit-local-variables-p hack-local-variables run-mode-hooks org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let] 4 [buffer-list let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil] 7 [regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt-group regexp-opt org-make-options-regexp org--collect-keywords-1 org-collect-keywords org-set-regexps-and-options] 3 [org-update-radio-target-regexp org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp] 4 [quote buffer-local-value and if while and let* or let find-buffer-visiting find-file-noselect if let while let progn] 3 [intern org-fold-core--property-symbol-get-create org-fold-core-add-folding-spec org-fold-core-initialize org-fold-initialize org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 3 [quote buffer-local-value string= and if while let or let find-buffer-visiting if let while let progn elisp--eval-last-sexp] 3 [org-persist--normalize-container org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 4 ["#<compiled -0x17b2b58b7c213c52>" mapcar vc-check-master-templates vc-default-registered vc-src-registered vc-call-backend "#<compiled -0xd9ef3ea77cb046f>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if] 3 [make-closure vc-check-master-templates vc-default-registered vc-rcs-registered vc-call-backend "#<compiled -0xd5e93ea77cb046f>" mapc vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let] 4 [mapcar easy-menu-get-map easy-menu-add-item easy-menu-change org-install-agenda-files-menu org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while] 3 ["#<compiled -0x141622d895fe3f8e>" org--set-faces-extend org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 3 [file-name-directory vc-registered vc-backend vc-refresh-state run-hooks after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively] 3 [upcase org-collect-keywords org-set-regexps-and-options org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn] 3 [make-lock-file-name insert-file-contents find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp eval-last-sexp funcall-interactively command-execute nil nil nil] 3 [org-persist-register org-element-cache-reset org-mode set-auto-mode-0 set-auto-mode--apply-alist set-auto-mode normal-mode after-find-file find-file-noselect-1 find-file-noselect if let while let progn elisp--eval-last-sexp] 4 [parse-partial-sexp syntax-ppss lisp--el-funcall-position-p lisp--el-match-keyword font-lock-fontify-keywords-region font-lock-default-fontify-region font-lock-fontify-region "#<compiled -0x7339493694aa027>" jit-lock--run-functions jit-lock-fontify-now jit-lock-function redisplay_internal\ \(C\ function\) nil nil nil nil] 3 [line-move-visual line-move previous-line funcall-interactively command-execute nil nil nil nil nil nil nil nil nil nil nil] 4 [scan-sexps show-paren--default show-paren-function apply timer-event-handler nil nil nil nil nil nil nil nil nil nil nil] 1 [eldoc-display-in-echo-area run-hook-with-args "#<compiled 0x11815915ee59bc6>" "#<compiled 0xec3ff97d5870465>" elisp-eldoc-funcall "#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_17>" eldoc-documentation-default eldoc--invoke-strategy eldoc-print-current-symbol-info "#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_12>" apply timer-event-handler nil nil nil nil] 5 [jit-lock-context-fontify "#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_9>" apply timer-event-handler nil nil nil nil nil nil nil nil nil nil nil nil] 10 [redisplay_internal\ \(C\ function\) completing-read-default read-extended-command-1 read-extended-command byte-code command-execute nil nil nil nil nil nil nil nil nil nil] 26 [redisplay--pre-redisplay-functions redisplay_internal\ \(C\ function\) completing-read-default read-extended-command-1 read-extended-command byte-code command-execute nil nil nil nil nil nil nil nil nil] 1 [try-completion complete-with-action "#<subr F616e6f6e796d6f75732d6c616d626461_anonymous_lambda_54>" completion-basic-try-completion "#<compiled -0x1b40019b67d614fc>" completion--some completion--nth-completion completion-try-completion completion--do-completion completion--in-region-1 "#<compiled 0x642de6705869b5c>" apply "#<compiled -0xf9786f92b569a2>" completion--in-region completion-in-region minibuffer-complete] 20 [completing-read-default read-extended-command-1 read-extended-command byte-code command-execute nil nil nil nil nil nil nil nil nil nil nil] 5 [Automatic\ GC nil] 2276 [profiler-report funcall-interactively command-execute execute-extended-command funcall-interactively command-execute nil nil nil nil nil nil nil nil nil nil] 7)) (25874 54556 743257 687000) nil]
[-- Attachment #5: Type: text/plain, Size: 224 bytes --]
--
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>
next prev parent reply other threads:[~2023-09-26 13:06 UTC|newest]
Thread overview: 162+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-20 8:53 bug#66117: 30.0.50; `find-buffer-visiting' is slow when opening large number of buffers Ihor Radchenko
2023-09-22 1:36 ` Dmitry Gutov
2023-09-22 11:03 ` Ihor Radchenko
2023-09-22 12:11 ` Dmitry Gutov
2023-09-22 12:41 ` Ihor Radchenko
2023-09-22 12:59 ` Eli Zaretskii
2023-09-22 13:30 ` Ihor Radchenko
2023-09-22 14:57 ` Eli Zaretskii
2023-09-23 8:22 ` Ihor Radchenko
2023-09-23 8:57 ` Eli Zaretskii
2023-09-24 10:54 ` Ihor Radchenko
2023-09-24 12:50 ` Eli Zaretskii
2023-09-26 8:54 ` Ihor Radchenko
2023-09-26 14:18 ` Michael Albinus
2023-10-04 10:57 ` Ihor Radchenko
2023-09-26 11:11 ` Dmitry Gutov
2023-09-26 13:06 ` Ihor Radchenko [this message]
2023-09-27 23:30 ` Michael Heerdegen
2023-10-05 14:25 ` Ihor Radchenko
2023-09-29 7:30 ` Eli Zaretskii
2023-09-29 13:56 ` Ihor Radchenko
2023-09-29 16:12 ` Eli Zaretskii
2023-10-03 3:25 ` Michael Heerdegen
2023-10-03 6:00 ` Eli Zaretskii
2023-10-07 8:25 ` Ihor Radchenko
2023-10-07 8:48 ` Eli Zaretskii
2023-10-07 9:29 ` Ihor Radchenko
2023-10-07 10:57 ` Eli Zaretskii
2023-10-07 11:08 ` Ihor Radchenko
2023-10-07 11:24 ` Eli Zaretskii
2023-10-07 11:43 ` Ihor Radchenko
2023-10-07 12:05 ` Eli Zaretskii
2023-10-08 9:00 ` Ihor Radchenko
2023-10-08 9:56 ` Eli Zaretskii
2023-10-09 10:02 ` Ihor Radchenko
2023-10-09 10:16 ` Ihor Radchenko
2023-12-12 14:24 ` Ihor Radchenko
2023-12-12 14:49 ` Eli Zaretskii
2023-12-12 16:33 ` Ihor Radchenko
2023-12-12 17:26 ` Eli Zaretskii
2023-12-12 17:44 ` Ihor Radchenko
2023-12-12 18:36 ` Eli Zaretskii
2023-12-12 19:10 ` Dmitry Gutov
2023-12-12 19:16 ` Eli Zaretskii
2023-12-12 19:18 ` Ihor Radchenko
2023-12-12 19:20 ` Eli Zaretskii
2023-12-12 20:01 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-12-12 20:47 ` Dmitry Gutov
2023-12-12 22:57 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-12-12 23:40 ` Dmitry Gutov
2023-12-13 3:50 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-12-12 23:09 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-12-12 23:43 ` Ihor Radchenko
2023-12-12 23:47 ` Dmitry Gutov
2023-12-13 3:55 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-12-13 12:10 ` Eli Zaretskii
2023-12-13 13:06 ` Ihor Radchenko
2023-12-13 13:25 ` Eli Zaretskii
2023-12-13 13:43 ` Ihor Radchenko
2023-12-13 13:51 ` Eli Zaretskii
2023-12-13 14:12 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-12-13 14:58 ` Eli Zaretskii
2023-12-13 14:32 ` Ihor Radchenko
2023-12-13 15:22 ` Eli Zaretskii
2023-12-14 14:20 ` Ihor Radchenko
2023-12-14 16:40 ` Eli Zaretskii
2023-12-14 17:07 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-12-14 17:14 ` Eli Zaretskii
2023-12-14 18:11 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-12-14 18:30 ` Ihor Radchenko
2023-12-14 18:41 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-12-14 19:02 ` Ihor Radchenko
2023-12-14 19:36 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-12-15 11:01 ` Ihor Radchenko
2023-12-15 13:47 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-12-17 6:04 ` Eli Zaretskii
2023-12-17 6:11 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-12-17 8:30 ` Eli Zaretskii
2023-12-17 10:31 ` Ihor Radchenko
2023-12-17 10:36 ` Eli Zaretskii
2023-12-17 10:46 ` Eli Zaretskii
2023-12-17 10:56 ` Ihor Radchenko
2023-12-17 11:06 ` Eli Zaretskii
2023-12-17 11:19 ` Ihor Radchenko
2023-12-17 12:06 ` Eli Zaretskii
2023-12-19 13:24 ` Ihor Radchenko
2023-12-19 13:38 ` Eli Zaretskii
2023-12-20 20:33 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-12-21 5:56 ` Gerd Möllmann
2023-12-21 13:25 ` Ihor Radchenko
2023-12-21 13:39 ` Gerd Möllmann
2024-01-01 18:02 ` Ihor Radchenko
2024-01-01 19:39 ` Gerd Möllmann
2024-01-01 20:39 ` Ihor Radchenko
2024-01-02 4:43 ` Gerd Möllmann
2024-01-02 10:52 ` Ihor Radchenko
2024-01-02 11:08 ` Gerd Möllmann
2024-01-02 11:17 ` Ihor Radchenko
2024-01-02 11:48 ` Gerd Möllmann
2024-01-02 12:07 ` Ihor Radchenko
2024-01-02 12:07 ` Gerd Möllmann
2024-01-02 12:15 ` Ihor Radchenko
2024-01-02 12:57 ` Gerd Möllmann
2024-01-02 13:09 ` Ihor Radchenko
2024-01-02 13:28 ` Gerd Möllmann
2024-01-03 14:28 ` Gerd Möllmann
2024-01-02 1:30 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-01-02 11:00 ` Ihor Radchenko
2024-01-02 11:57 ` Gerd Möllmann
2024-01-02 12:11 ` Ihor Radchenko
2024-01-03 2:13 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2024-01-02 11:08 ` Ihor Radchenko
2024-01-02 14:08 ` Gerd Möllmann
2023-12-17 15:17 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-12-17 16:02 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-12-17 10:52 ` Ihor Radchenko
2023-12-17 11:01 ` Eli Zaretskii
2023-12-17 11:26 ` Ihor Radchenko
2023-12-17 12:14 ` Eli Zaretskii
2023-12-17 15:24 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-12-14 18:49 ` Eli Zaretskii
2023-12-14 19:49 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-12-14 20:24 ` Eli Zaretskii
2023-12-14 20:57 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-12-14 21:32 ` Dmitry Gutov
2023-12-14 23:03 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-12-14 19:15 ` Ihor Radchenko
2023-12-14 19:56 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-12-15 10:19 ` Ihor Radchenko
2023-10-08 11:16 ` Dmitry Gutov
2023-10-08 11:25 ` Ihor Radchenko
2023-10-08 11:44 ` Eli Zaretskii
2023-10-08 12:10 ` Ihor Radchenko
2023-10-08 12:28 ` Dmitry Gutov
2023-10-08 12:11 ` Dmitry Gutov
2023-10-08 12:20 ` Ihor Radchenko
2023-10-09 0:48 ` Dmitry Gutov
2023-12-23 8:54 ` Eli Zaretskii
2023-12-23 9:41 ` Ihor Radchenko
2023-12-23 11:16 ` Eli Zaretskii
2023-12-23 11:28 ` Ihor Radchenko
2023-12-23 11:51 ` Eli Zaretskii
2023-12-23 14:30 ` Ihor Radchenko
2023-12-30 7:39 ` Eli Zaretskii
2023-12-29 7:47 ` Eli Zaretskii
2023-12-29 13:55 ` Ihor Radchenko
2023-12-30 8:08 ` Eli Zaretskii
2023-12-30 9:50 ` Eli Zaretskii
2023-12-30 10:10 ` Eli Zaretskii
2023-12-30 10:39 ` Ihor Radchenko
2023-12-30 11:07 ` Eli Zaretskii
2023-12-30 12:51 ` Ihor Radchenko
2023-12-30 13:24 ` Eli Zaretskii
2024-01-01 17:11 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2023-09-22 13:02 ` Dmitry Gutov
2023-09-22 13:10 ` Eli Zaretskii
2023-09-22 13:38 ` Ihor Radchenko
2023-09-22 13:45 ` Dmitry Gutov
2023-10-04 10:58 ` Ihor Radchenko
2023-10-04 11:46 ` Dmitry Gutov
2023-10-05 11:27 ` Ihor Radchenko
2023-10-05 17:14 ` Dmitry Gutov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87pm2584oz.fsf@localhost \
--to=yantar92@posteo.net \
--cc=66117@debbugs.gnu.org \
--cc=dmitry@gutov.dev \
--cc=eliz@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).